summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-10 14:39:45 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-10 14:39:45 +0200
commit95e6a5dcd380d738fbf9d959111f049d15ca8d11 (patch)
tree20f21a5c6169910d748850ad72c7eeed8a946e5e
parentf1266765533105e94815829178869bddbc826901 (diff)
downloadgitlab-ce-95e6a5dcd380d738fbf9d959111f049d15ca8d11.tar.gz
Fix admin forms UI
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/views/admin/groups/edit.html.haml8
-rw-r--r--app/views/admin/groups/new.html.haml28
-rw-r--r--app/views/admin/users/_form.html.haml74
3 files changed, 55 insertions, 55 deletions
diff --git a/app/views/admin/groups/edit.html.haml b/app/views/admin/groups/edit.html.haml
index e9807d7473a..eb5c91050af 100644
--- a/app/views/admin/groups/edit.html.haml
+++ b/app/views/admin/groups/edit.html.haml
@@ -1,22 +1,22 @@
%h3.page-title Edit Group
%hr
-= form_for [:admin, @group] do |f|
+= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
- if @group.errors.any?
.alert.alert-danger
%span= @group.errors.full_messages.first
.form-group.group_name_holder
- = f.label :name do
+ = f.label :name, class: 'control-label' do
Group name
.col-sm-10
= f.text_field :name, placeholder: "Example Group", class: "form-control"
.form-group.group-description-holder
- = f.label :description, "Details"
+ = f.label :description, "Details", class: 'control-label'
.col-sm-10
= f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4
.form-group.group_name_holder
- = f.label :path do
+ = f.label :path, class: 'control-label' do
%span.cred Group path
.col-sm-10
= f.text_field :path, placeholder: "example-group", class: "form-control danger"
diff --git a/app/views/admin/groups/new.html.haml b/app/views/admin/groups/new.html.haml
index 2689b47fbc5..ae0604cf984 100644
--- a/app/views/admin/groups/new.html.haml
+++ b/app/views/admin/groups/new.html.haml
@@ -1,27 +1,31 @@
%h3.page-title New Group
%hr
-= form_for [:admin, @group] do |f|
+= form_for [:admin, @group], html: { class: 'group-form form-horizontal' } do |f|
- if @group.errors.any?
.alert.alert-danger
%span= @group.errors.full_messages.first
.form-group
- = f.label :name do
+ = f.label :name, class: 'control-label' do
Group name
.col-sm-10
- = f.text_field :name, placeholder: "Ex. OpenSource", class: "form-control left"
+ = f.text_field :name, placeholder: "Ex. OpenSource", class: "form-control"
+
.form-group.group-description-holder
- = f.label :description, "Details"
+ = f.label :description, "Details", class: 'control-label'
.col-sm-10
= f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4
+ .form-group
+ .col-sm-2
+ .col-sm-10
+ %ul
+ %li A group is a collection of several projects
+ %li Groups are private by default
+ %li Members of a group may only view projects they have permission to access
+ %li Group project URLs are prefixed with the group namespace
+ %li Existing projects may be moved into a group
+
.form-actions
= f.submit 'Create group', class: "btn btn-create"
- %hr
- .padded
- %ul
- %li Group is kind of directory for several projects
- %li All created groups are private
- %li People within a group see only projects they have access to
- %li All projects of group will be stored in a group directory
- %li You will be able to move existing projects into group
+
diff --git a/app/views/admin/users/_form.html.haml b/app/views/admin/users/_form.html.haml
index a9fb62c9b96..4e8024a80cc 100644
--- a/app/views/admin/users/_form.html.haml
+++ b/app/views/admin/users/_form.html.haml
@@ -1,5 +1,5 @@
.user_new
- = form_for [:admin, @user] do |f|
+ = form_for [:admin, @user], html: { class: 'form-horizontal' } do |f|
-if @user.errors.any?
#error_explanation
%ul.unstyled.alert.alert-danger
@@ -9,26 +9,26 @@
%fieldset
%legend Account
.form-group
- = f.label :name
+ = f.label :name, class: 'control-label'
.col-sm-10
- = f.text_field :name, required: true, autocomplete: "off"
+ = f.text_field :name, required: true, autocomplete: "off", class: 'form-control'
%span.help-inline * required
.form-group
- = f.label :username
+ = f.label :username, class: 'control-label'
.col-sm-10
- = f.text_field :username, required: true, autocomplete: "off"
+ = f.text_field :username, required: true, autocomplete: "off", class: 'form-control'
%span.help-inline * required
.form-group
- = f.label :email
+ = f.label :email, class: 'control-label'
.col-sm-10
- = f.text_field :email, required: true, autocomplete: "off"
+ = f.text_field :email, required: true, autocomplete: "off", class: 'form-control'
%span.help-inline * required
- if @user.new_record?
%fieldset
%legend Password
.form-group
- = f.label :password
+ = f.label :password, class: 'control-label'
.col-sm-10
%strong
A temporary password will be generated and sent to user.
@@ -38,48 +38,44 @@
%fieldset
%legend Password
.form-group
- = f.label :password
- .col-sm-10= f.password_field :password, disabled: f.object.force_random_password
+ = f.label :password, class: 'control-label'
+ .col-sm-10= f.password_field :password, disabled: f.object.force_random_password, class: 'form-control'
.form-group
- = f.label :password_confirmation
- .col-sm-10= f.password_field :password_confirmation, disabled: f.object.force_random_password
+ = f.label :password_confirmation, class: 'control-label'
+ .col-sm-10= f.password_field :password_confirmation, disabled: f.object.force_random_password, class: 'form-control'
%fieldset
%legend Access
- .row
- .col-md-8
- .form-group
- = f.label :projects_limit
- .col-sm-10= f.number_field :projects_limit
+ .form-group
+ = f.label :projects_limit, class: 'control-label'
+ .col-sm-10= f.number_field :projects_limit, class: 'form-control'
- .form-group
- = f.label :can_create_group
- .col-sm-10= f.check_box :can_create_group
+ .form-group
+ = f.label :can_create_group, class: 'control-label'
+ .col-sm-10= f.check_box :can_create_group
- .form-group
- = f.label :admin do
- %strong.cred Administrator
- .col-sm-10= f.check_box :admin
- .col-md-4
- - unless @user.new_record?
- .alert.alert-danger
- - if @user.blocked?
- %p This user is blocked and is not able to login to GitLab
- = link_to 'Unblock User', unblock_admin_user_path(@user), method: :put, class: "btn btn-small"
- - else
- %p Blocked users will be removed from all projects &amp; will not be able to login to GitLab.
- = link_to 'Block User', block_admin_user_path(@user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-small btn-remove"
+ .form-group
+ = f.label :admin, class: 'control-label'
+ .col-sm-10= f.check_box :admin
+ - unless @user.new_record?
+ .alert.alert-danger
+ - if @user.blocked?
+ %p This user is blocked and is not able to login to GitLab
+ = link_to 'Unblock User', unblock_admin_user_path(@user), method: :put, class: "btn btn-small"
+ - else
+ %p Blocked users will be removed from all projects &amp; will not be able to login to GitLab.
+ = link_to 'Block User', block_admin_user_path(@user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-small btn-remove"
%fieldset
%legend Profile
.form-group
- = f.label :skype
- .col-sm-10= f.text_field :skype
+ = f.label :skype, class: 'control-label'
+ .col-sm-10= f.text_field :skype, class: 'form-control'
.form-group
- = f.label :linkedin
- .col-sm-10= f.text_field :linkedin
+ = f.label :linkedin, class: 'control-label'
+ .col-sm-10= f.text_field :linkedin, class: 'form-control'
.form-group
- = f.label :twitter
- .col-sm-10= f.text_field :twitter
+ = f.label :twitter, class: 'control-label'
+ .col-sm-10= f.text_field :twitter, class: 'form-control'
.form-actions
- if @user.new_record?