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

97 lines
3.2 KiB
Plaintext
Raw Normal View History

.profile_avatar_holder
2012-11-21 06:14:05 +01:00
= image_tag gravatar_icon(@user.email, 90)
%h3.page_title
= @user.name
%br
%small
= @user.email
2013-01-30 15:40:43 +01:00
.pull-right
= link_to destroy_user_session_path, class: "logout", method: :delete do
%small
%i.icon-signout
Logout
%hr
= form_for @user, url: profile_path, method: :put, html: { class: "edit_user form-horizontal" } do |f|
2012-01-27 00:46:32 +01:00
-if @user.errors.any?
2013-01-30 15:53:18 +01:00
%div.alert.alert-error
2012-01-27 00:46:32 +01:00
%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"
2012-04-10 07:51:08 +02:00
.controls
2012-11-21 06:14:05 +01:00
= f.text_field :name, class: "input-xlarge", required: true
%span.help-block Enter your name, so people you know can recognize you.
2012-04-10 07:51:08 +02:00
.control-group
= f.label :email, class: "control-label"
2012-04-10 07:51:08 +02:00
.controls
2012-11-21 06:14:05 +01:00
= f.text_field :email, class: "input-xlarge", required: true
%span.help-block We also use email for avatar detection.
2013-01-25 15:36:14 +01: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
%span.help-block Tell us about yourself in fewer than 250 characters.
2013-01-30 15:40:43 +01:00
.span5.pull-right
2012-11-21 06:14:05 +01:00
%fieldset.tips
%legend Tips:
%ul
2012-11-21 06:14:05 +01:00
%li
%p You can change your password on Account page
2012-12-15 02:19:21 +01:00
- if Gitlab.config.gravatar.enabled
%li
2012-11-21 06:14:05 +01:00
%p You can change your avatar at #{link_to "gravatar.com", "http://gravatar.com"}
- if Gitlab.config.omniauth.enabled && @user.provider?
%li
%p
You can login through #{@user.provider.titleize}!
= link_to "click here to change", account_profile_path
- if current_user.can_create_group?
%li
%p
Need a group for several dependent projects?
2013-01-29 21:29:21 +01:00
= link_to new_group_path, class: "btn btn-tiny" do
Create a group
- if current_user.can_create_team?
%li
%p
Want to share a team between projects?
2013-01-29 21:29:21 +01:00
= link_to new_team_path, class: "btn btn-tiny" do
Create a team
2012-11-21 06:14:05 +01:00
%fieldset
%legend
Personal projects:
2013-01-30 15:40:43 +01:00
%small.pull-right
%span= current_user.owned_projects.count
2012-11-21 06:14:05 +01:00
of
%span= current_user.projects_limit
.padded
2012-09-12 07:23:20 +02:00
.progress
.bar{style: "width: #{current_user.projects_limit_percent}%;"}
2012-11-21 06:14:05 +01:00
%fieldset
%legend
SSH public keys:
2013-01-30 15:40:43 +01:00
%span.pull-right
= link_to pluralize(current_user.keys.count, 'key'), keys_path
2012-11-21 06:14:05 +01:00
.padded
2013-01-29 21:29:21 +01:00
= link_to "Add Public Key", new_key_path, class: "btn btn-small"
2012-04-10 07:51:08 +02:00
.form-actions
2013-01-29 21:18:19 +01:00
= f.submit 'Save', class: "btn btn-save"