Admin area -> user form
This commit is contained in:
parent
f13bccc14b
commit
6ff0652e9e
|
@ -35,11 +35,13 @@
|
||||||
%h3 Latest projects
|
%h3 Latest projects
|
||||||
%hr
|
%hr
|
||||||
- @projects.each do |project|
|
- @projects.each do |project|
|
||||||
%h5
|
%p
|
||||||
= link_to project.name, [:admin, project]
|
= link_to project.name, [:admin, project]
|
||||||
.span6
|
.span6
|
||||||
%h3 Latest users
|
%h3 Latest users
|
||||||
%hr
|
%hr
|
||||||
- @users.each do |user|
|
- @users.each do |user|
|
||||||
%h5
|
%p
|
||||||
= link_to user.name, [:admin, user]
|
= link_to [:admin, user] do
|
||||||
|
= user.name
|
||||||
|
%small= user.email
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
%h3
|
%h3.page_title
|
||||||
Projects
|
Projects
|
||||||
= link_to 'New Project', new_admin_project_path, class: "btn small right"
|
= link_to 'New Project', new_admin_project_path, class: "btn small right"
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -2,12 +2,14 @@
|
||||||
= form_for [:admin, @admin_user] do |f|
|
= form_for [:admin, @admin_user] do |f|
|
||||||
-if @admin_user.errors.any?
|
-if @admin_user.errors.any?
|
||||||
#error_explanation
|
#error_explanation
|
||||||
%ul
|
%ul.unstyled.alert.alert-error
|
||||||
- @admin_user.errors.full_messages.each do |msg|
|
- @admin_user.errors.full_messages.each do |msg|
|
||||||
%li= msg
|
%li= msg
|
||||||
|
|
||||||
.row
|
.row
|
||||||
.span6
|
.span7
|
||||||
|
.ui-box
|
||||||
|
%br
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :name
|
= f.label :name
|
||||||
.input
|
.input
|
||||||
|
@ -19,12 +21,11 @@
|
||||||
= f.text_field :email
|
= f.text_field :email
|
||||||
%span.help-inline * required
|
%span.help-inline * required
|
||||||
%hr
|
%hr
|
||||||
|
|
||||||
-if f.object.new_record?
|
-if f.object.new_record?
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :admin, class: "checkbox" do
|
= f.label :force_random_password do
|
||||||
= f.check_box :force_random_password, {}, true, nil
|
|
||||||
%span Generate random password
|
%span Generate random password
|
||||||
|
.input= f.check_box :force_random_password, {}, true, nil
|
||||||
|
|
||||||
%div.password-fields
|
%div.password-fields
|
||||||
.clearfix
|
.clearfix
|
||||||
|
@ -43,27 +44,34 @@
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :twitter
|
= f.label :twitter
|
||||||
.input= f.text_field :twitter
|
.input= f.text_field :twitter
|
||||||
.span6
|
.span5
|
||||||
|
.ui-box
|
||||||
|
%br
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :projects_limit
|
= f.label :projects_limit
|
||||||
.input= f.text_field :projects_limit, class: "small_input"
|
.input= f.number_field :projects_limit
|
||||||
|
|
||||||
.alert
|
|
||||||
.clearfix
|
.clearfix
|
||||||
%p Make the user a GitLab administrator.
|
= f.label :admin do
|
||||||
= f.label :admin, class: "checkbox" do
|
%strong.cred Administrator
|
||||||
= f.check_box :admin
|
.input= f.check_box :admin
|
||||||
%span Administrator
|
|
||||||
- unless @admin_user.new_record?
|
- unless @admin_user.new_record?
|
||||||
.alert.alert-error
|
%hr
|
||||||
|
.padded.cred
|
||||||
- if @admin_user.blocked
|
- if @admin_user.blocked
|
||||||
%span
|
%span
|
||||||
= link_to 'Unblock', unblock_admin_user_path(@admin_user), method: :put, class: "btn small"
|
|
||||||
This user is blocked and is not able to login to GitLab
|
This user is blocked and is not able to login to GitLab
|
||||||
|
.clearfix
|
||||||
|
= link_to 'Unblock User', unblock_admin_user_path(@admin_user), method: :put, class: "btn small right"
|
||||||
- else
|
- else
|
||||||
%span
|
%span
|
||||||
= link_to 'Block', block_admin_user_path(@admin_user), confirm: 'USER WILL BE BLOCKED! Are you sure?', method: :put, class: "btn small danger"
|
|
||||||
Blocked users will be removed from all projects & will not be able to login to GitLab.
|
Blocked users will be removed from all projects & will not be able to login to GitLab.
|
||||||
|
.clearfix
|
||||||
|
= link_to 'Block User', block_admin_user_path(@admin_user), confirm: 'USER WILL BE BLOCKED! Are you sure?', method: :put, class: "btn small right danger"
|
||||||
|
|
||||||
|
.row
|
||||||
|
.span6
|
||||||
|
.span6
|
||||||
.actions
|
.actions
|
||||||
= f.submit 'Save', class: "btn primary"
|
= f.submit 'Save', class: "btn primary"
|
||||||
- if @admin_user.new_record?
|
- if @admin_user.new_record?
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
%h3= @admin_user.name
|
%h3.page_title #{@admin_user.name} → Edit user
|
||||||
%hr
|
%hr
|
||||||
= render 'form'
|
= render 'form'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
%h3
|
%h3.page_title
|
||||||
Users
|
Users
|
||||||
= link_to 'New User', new_admin_user_path, class: "btn small right"
|
= link_to 'New User', new_admin_user_path, class: "btn small right"
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
%h2 New user
|
%h3.page_title New user
|
||||||
%hr
|
%br
|
||||||
= render 'form'
|
= render 'form'
|
||||||
|
|
Loading…
Reference in a new issue