summaryrefslogtreecommitdiff
path: root/app/views/profile/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/profile/show.html.haml')
-rw-r--r--app/views/profile/show.html.haml34
1 files changed, 17 insertions, 17 deletions
diff --git a/app/views/profile/show.html.haml b/app/views/profile/show.html.haml
index b26890131bb..95cce2bb6b6 100644
--- a/app/views/profile/show.html.haml
+++ b/app/views/profile/show.html.haml
@@ -1,5 +1,5 @@
.profile_avatar_holder
- = image_tag gravatar_icon(@user.email, 90), :class => "styled_image"
+ = image_tag gravatar_icon(@user.email, 90), class: "styled_image"
%h3.page_title
= @user.name
%br
@@ -9,7 +9,7 @@
%hr
-= form_for @user, :url => profile_update_path, :method => :put, :html => { :class => "edit_user form-horizontal" } do |f|
+= form_for @user, url: profile_update_path, method: :put, html: { class: "edit_user form-horizontal" } do |f|
-if @user.errors.any?
%div.alert-message.block-message.error
%ul
@@ -18,30 +18,30 @@
.row
.span7
.control-group
- = f.label :name, :class => "control-label"
+ = f.label :name, class: "control-label"
.controls
- = f.text_field :name, :class => "input-xlarge"
+ = f.text_field :name, class: "input-xlarge"
%span.help-block Enter your name, so people you know can recognize you.
.control-group
- = f.label :email, :class => "control-label"
+ = f.label :email, class: "control-label"
.controls
- = f.text_field :email, :class => "input-xlarge"
+ = f.text_field :email, class: "input-xlarge"
%span.help-block We also use email for avatar detection.
%hr
.control-group
- = f.label :skype, :class => "control-label"
- .controls= f.text_field :skype, :class => "input-xlarge"
+ = f.label :skype, class: "control-label"
+ .controls= f.text_field :skype, class: "input-xlarge"
.control-group
- = f.label :linkedin, :class => "control-label"
- .controls= f.text_field :linkedin, :class => "input-xlarge"
+ = f.label :linkedin, class: "control-label"
+ .controls= f.text_field :linkedin, class: "input-xlarge"
.control-group
- = f.label :twitter, :class => "control-label"
- .controls= f.text_field :twitter, :class => "input-xlarge"
+ = f.label :twitter, class: "control-label"
+ .controls= f.text_field :twitter, class: "input-xlarge"
.control-group
- = f.label :bio, :class => "control-label"
+ = f.label :bio, class: "control-label"
.controls
- = f.text_area :bio, :rows => 6, :class => "input-xlarge", :maxlength => 250
+ = f.text_area :bio, rows: 6, class: "input-xlarge", maxlength: 250
%span.help-block Tell us about yourself in fewer than 250 characters.
.span5.right
@@ -56,14 +56,14 @@
of
%span= current_user.projects_limit
.progress
- .bar{:style => "width: #{current_user.projects_limit_percent}%;"}
+ .bar{style: "width: #{current_user.projects_limit_percent}%;"}
%h4
SSH public keys:
%small.right
%span= link_to current_user.keys.count, keys_path
- = link_to "Add Public Key", new_key_path, :class => "btn small right"
+ = link_to "Add Public Key", new_key_path, class: "btn small right"
.form-actions
- = f.submit 'Save', :class => "btn-primary btn"
+ = f.submit 'Save', class: "btn-primary btn"