Skip to content
Snippets Groups Projects
Commit 8b5ef3c2 authored by Tiago Ribeiro's avatar Tiago Ribeiro
Browse files

Fixed typo in label

parent 5ef3b384
No related branches found
No related tags found
1 merge request!687Fixed typo in label
Loading
Loading
@@ -12,12 +12,12 @@
= f.label :name
.input
= f.text_field :name
%span.help-inline * requried
%span.help-inline * required
.clearfix
= f.label :email
.input
= f.text_field :email
%span.help-inline * requried
%span.help-inline * required
.clearfix
= f.label :password
.input= f.password_field :password
Loading
Loading
@@ -42,10 +42,10 @@
.alert
.clearfix
%p Give user ability to manage application.
= f.label :admin, :class => "checkbox" do
= f.label :admin, :class => "checkbox" do
= f.check_box :admin
%span Administrator
- unless @admin_user.new_record?
- unless @admin_user.new_record?
.alert.alert-error
- if @admin_user.blocked
%span
Loading
Loading
@@ -57,7 +57,7 @@
Blocked user will removed from all projects & will not be able to login to GitLab.
.actions
= f.submit 'Save', :class => "btn primary"
- if @admin_user.new_record?
- if @admin_user.new_record?
= link_to 'Cancel', admin_users_path, :class => "btn"
- else
- else
= link_to 'Cancel', admin_user_path(@admin_user), :class => "btn"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment