gitlabhq/app/views/profile/show.html.haml

68 lines
2.2 KiB
Plaintext
Raw Normal View History

2012-03-24 00:01:36 +01:00
.row
2012-04-10 07:51:08 +02:00
.span8
2012-03-24 00:01:36 +01:00
.profile_avatar_holder
= image_tag gravatar_icon(@user.email, 90), :class => "styled_image"
%h3
= @user.name
%br
%small
= @user.email
2012-04-10 07:51:08 +02:00
.span4.right
2012-03-24 00:01:36 +01:00
%div
%div
%h5.cgray
Personal projects:
%span.right
%span= current_user.my_own_projects.count
of
%span= current_user.projects_limit
%h5.cgray
SSH public keys:
%span.right
%span= current_user.keys.count
%hr
2012-04-10 07:51:08 +02:00
= form_for @user, :url => profile_update_path, :method => :put, :html => { :class => "edit_user form-horizontal" } do |f|
2012-01-27 00:46:32 +01:00
-if @user.errors.any?
%div.alert-message.block-message.error
%ul
- @user.errors.full_messages.each do |msg|
%li= msg
2012-03-24 00:01:36 +01:00
.row
2012-04-10 07:51:08 +02:00
.span7
.control-group
= f.label :name, :class => "control-label"
.controls
= f.text_field :name, :class => "input-xlarge"
2012-03-24 00:01:36 +01:00
%span.help-block Enter youre name, so people you know can recognize you.
2012-04-10 07:51:08 +02:00
.control-group
= f.label :email, :class => "control-label"
.controls
= f.text_field :email, :class => "input-xlarge"
2012-03-24 00:01:36 +01:00
%span.help-block We also use email for avatar detection
2012-04-10 07:51:08 +02:00
.control-group
= 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"
.control-group
= f.label :twitter, :class => "control-label"
.controls= f.text_field :twitter, :class => "input-xlarge"
.control-group
= f.label :bio, :class => "control-label"
.controls
= f.text_area :bio, :rows => 6, :class => "input-xlarge", :maxlength => 250
2012-03-24 00:01:36 +01:00
%span.help-block About yourself in fewer than 250 characters.
2012-04-10 07:51:08 +02:00
.span5.right
2012-03-24 00:01:36 +01:00
%p.alert-message.block-message
%strong Tip:
You can change your avatar at gravatar.com
2012-01-27 00:46:32 +01:00
2012-04-10 07:51:08 +02:00
.form-actions
= f.submit 'Save', :class => "btn-primary btn"
2012-03-24 00:01:36 +01:00
-#= link_to "New project", new_project_path, :class => "btn small padded"
-#= link_to "New public key", new_key_path, :class => "btn small"