debian-mirror-gitlab/app/views/profiles/show.html.haml

146 lines
8.2 KiB
Text
Raw Normal View History

2018-11-20 20:47:30 +05:30
- breadcrumb_title s_("Profiles|Edit Profile")
2017-09-10 17:25:29 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2018-11-20 20:47:30 +05:30
- gravatar_link = link_to Gitlab.config.gravatar.host, 'https://' + Gitlab.config.gravatar.host
2016-08-24 12:49:21 +05:30
2018-03-17 18:26:18 +05:30
= bootstrap_form_for @user, url: profile_path, method: :put, html: { multipart: true, class: 'edit-user prepend-top-default js-quick-submit' }, authenticity_token: true do |f|
2016-06-02 11:05:42 +05:30
= form_errors(@user)
2014-09-02 18:07:02 +05:30
.row
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2016-06-02 11:05:42 +05:30
%h4.prepend-top-0
2018-11-20 20:47:30 +05:30
= s_("Profiles|Public Avatar")
2016-06-02 11:05:42 +05:30
%p
- if @user.avatar?
- if gravatar_enabled?
2018-11-20 20:47:30 +05:30
= s_("Profiles|You can change your avatar here or remove the current avatar to revert to %{gravatar_link}").html_safe % { gravatar_link: gravatar_link }
- else
= s_("Profiles|You can change your avatar here")
2016-06-02 11:05:42 +05:30
- else
- if gravatar_enabled?
2018-11-20 20:47:30 +05:30
= s_("Profiles|You can upload your avatar here or change it at %{gravatar_link}").html_safe % { gravatar_link: gravatar_link }
- else
= s_("Profiles|You can upload your avatar here")
2017-09-10 17:25:29 +05:30
.col-lg-8
2016-06-02 11:05:42 +05:30
.clearfix.avatar-image.append-bottom-default
2018-03-27 19:54:05 +05:30
= link_to avatar_icon_for_user(@user, 400), target: '_blank', rel: 'noopener noreferrer' do
= image_tag avatar_icon_for_user(@user, 160), alt: '', class: 'avatar s160'
2018-11-20 20:47:30 +05:30
%h5.prepend-top-0= s_("Profiles|Upload new avatar")
2016-06-02 11:05:42 +05:30
.prepend-top-5.append-bottom-10
2018-11-20 20:47:30 +05:30
%button.btn.js-choose-user-avatar-button{ type: 'button' }= s_("Profiles|Choose file...")
%span.avatar-file-name.prepend-left-default.js-avatar-filename= s_("Profiles|No file chosen")
2017-09-10 17:25:29 +05:30
= f.file_field_without_bootstrap :avatar, class: 'js-user-avatar-input hidden', accept: 'image/*'
2018-11-20 20:47:30 +05:30
.form-text.text-muted= s_("Profiles|The maximum file size allowed is 200KB.")
2016-06-02 11:05:42 +05:30
- if @user.avatar?
%hr
2018-11-20 20:47:30 +05:30
= link_to s_("Profiles|Remove avatar"), profile_avatar_path, data: { confirm: s_("Profiles|Avatar will be removed. Are you sure?") }, method: :delete, class: 'btn btn-danger btn-inverted'
2018-11-18 11:00:15 +05:30
%hr
.row
.col-lg-4.profile-settings-sidebar
2018-11-20 20:47:30 +05:30
%h4.prepend-top-0= s_("Profiles|Current status")
2018-11-18 11:00:15 +05:30
%p= s_("Profiles|This emoji and message will appear on your profile and throughout the interface.")
.col-lg-8
= f.fields_for :status, @user.status do |status_form|
- emoji_button = button_tag type: :button,
class: 'js-toggle-emoji-menu emoji-menu-toggle-button btn has-tooltip',
title: s_("Profiles|Add status emoji") do
- if @user.status
= emoji_icon @user.status.emoji
%span#js-no-emoji-placeholder.no-emoji-placeholder{ class: ('hidden' if @user.status) }
= sprite_icon('emoji_slightly_smiling_face', css_class: 'award-control-icon-neutral')
= sprite_icon('emoji_smiley', css_class: 'award-control-icon-positive')
= sprite_icon('emoji_smile', css_class: 'award-control-icon-super-positive')
- reset_message_button = button_tag type: :button,
id: 'js-clear-user-status-button',
class: 'clear-user-status btn has-tooltip',
title: s_("Profiles|Clear status") do
= sprite_icon("close")
= status_form.hidden_field :emoji, id: 'js-status-emoji-field'
= status_form.text_field :message,
id: 'js-status-message-field',
class: 'form-control input-lg',
label: s_("Profiles|Your status"),
prepend: emoji_button,
append: reset_message_button,
placeholder: s_("Profiles|What's your status?")
2016-06-02 11:05:42 +05:30
%hr
.row
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2016-06-02 11:05:42 +05:30
%h4.prepend-top-0
2018-11-20 20:47:30 +05:30
= s_("Profiles|Main settings")
2016-06-02 11:05:42 +05:30
%p
2018-11-20 20:47:30 +05:30
= s_("Profiles|This information will appear on your profile.")
2016-06-02 11:05:42 +05:30
- if current_user.ldap_user?
2018-11-20 20:47:30 +05:30
= s_("Profiles|Some options are unavailable for LDAP accounts")
2017-09-10 17:25:29 +05:30
.col-lg-8
.row
2018-03-17 18:26:18 +05:30
- if @user.read_only_attribute?(:name)
= f.text_field :name, required: true, readonly: true, wrapper: { class: 'col-md-9' },
2018-11-20 20:47:30 +05:30
help: s_("Profiles|Your name was automatically set based on your %{provider_label} account, so people you know can recognize you.") % { provider_label: attribute_provider_label(:name) }
2018-03-17 18:26:18 +05:30
- else
2018-11-20 20:47:30 +05:30
= f.text_field :name, label: 'Full name', required: true, wrapper: { class: 'col-md-9' }, help: "Enter your name, so people you know can recognize you."
2017-09-10 17:25:29 +05:30
= f.text_field :id, readonly: true, label: 'User ID', wrapper: { class: 'col-md-3' }
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
- if @user.read_only_attribute?(:email)
2018-11-20 20:47:30 +05:30
= f.text_field :email, required: true, readonly: true, help: s_("Profiles|Your email address was automatically set based on your %{provider_label} account.") % { provider_label: attribute_provider_label(:email) }
2017-09-10 17:25:29 +05:30
- else
= f.text_field :email, required: true, value: (@user.email unless @user.temp_oauth_email?),
help: user_email_help_text(@user)
= f.select :public_email, options_for_select(@user.all_emails, selected: @user.public_email),
2018-11-20 20:47:30 +05:30
{ help: s_("Profiles|This email will be displayed on your public profile."), include_blank: s_("Profiles|Do not show on profile") },
2017-09-10 17:25:29 +05:30
control_class: 'select2'
2018-12-13 13:39:08 +05:30
- commit_email_docs_link = link_to s_('Profiles|Learn more'), help_page_path('user/profile/index', anchor: 'commit-email', target: '_blank')
= f.select :commit_email, options_for_select(commit_email_select_options(@user), selected: selected_commit_email(@user)),
{ help: s_("Profiles|This email will be used for web based operations, such as edits and merges. %{learn_more}").html_safe % { learn_more: commit_email_docs_link } },
2018-12-05 23:21:45 +05:30
control_class: 'select2'
2017-09-10 17:25:29 +05:30
= f.select :preferred_language, Gitlab::I18n::AVAILABLE_LANGUAGES.map { |value, label| [label, value] },
2018-11-20 20:47:30 +05:30
{ help: s_("Profiles|This feature is experimental and translations are not complete yet.") },
2017-09-10 17:25:29 +05:30
control_class: 'select2'
= f.text_field :skype
= f.text_field :linkedin
= f.text_field :twitter
2018-11-20 20:47:30 +05:30
= f.text_field :website_url, label: s_("Profiles|Website")
2018-03-17 18:26:18 +05:30
- if @user.read_only_attribute?(:location)
2018-11-20 20:47:30 +05:30
= f.text_field :location, readonly: true, help: s_("Profiles|Your location was automatically set based on your %{provider_label} account.") % { provider_label: attribute_provider_label(:location) }
2018-03-17 18:26:18 +05:30
- else
= f.text_field :location
2017-09-10 17:25:29 +05:30
= f.text_field :organization
2018-11-20 20:47:30 +05:30
= f.text_area :bio, rows: 4, maxlength: 250, help: s_("Profiles|Tell us about yourself in fewer than 250 characters.")
2018-11-18 11:00:15 +05:30
%hr
2018-11-20 20:47:30 +05:30
%h5= ("Private profile")
2018-12-05 23:21:45 +05:30
.checkbox-icon-inline-wrapper
- private_profile_label = capture do
= s_("Profiles|Don't display activity-related personal information on your profiles")
= f.check_box :private_profile, label: private_profile_label
2018-11-18 11:00:15 +05:30
= link_to icon('question-circle'), help_page_path('user/profile/index.md', anchor: 'private-profile')
2018-11-20 20:47:30 +05:30
%h5= s_("Profiles|Private contributions")
= f.check_box :include_private_contributions, label: 'Include private contributions on my profile'
.help-block
= s_("Profiles|Choose to show contributions of private projects on your public profile without any project, repository or organization information.")
2016-06-02 11:05:42 +05:30
.prepend-top-default.append-bottom-default
2018-11-20 20:47:30 +05:30
= f.submit s_("Profiles|Update profile settings"), class: 'btn btn-success'
= link_to _("Cancel"), user_path(current_user), class: 'btn btn-cancel'
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
.modal.modal-profile-crop
.modal-dialog
.modal-content
.modal-header
%h4.modal-title
2018-11-20 20:47:30 +05:30
= s_("Profiles|Position and size your new avatar")
%button.close{ type: "button", "data-dismiss": "modal", "aria-label" => _("Close") }
2018-11-08 19:23:39 +05:30
%span{ "aria-hidden": true } ×
2016-06-02 11:05:42 +05:30
.modal-body
.profile-crop-image-container
2018-11-20 20:47:30 +05:30
%img.modal-profile-crop-image{ alt: s_("Profiles|Avatar cropper") }
2016-06-02 11:05:42 +05:30
.crop-controls
.btn-group
2017-09-10 17:25:29 +05:30
%button.btn.btn-primary{ data: { method: 'zoom', option: '0.1' } }
2016-06-02 11:05:42 +05:30
%span.fa.fa-search-plus
2017-09-10 17:25:29 +05:30
%button.btn.btn-primary{ data: { method: 'zoom', option: '-0.1' } }
2016-06-02 11:05:42 +05:30
%span.fa.fa-search-minus
.modal-footer
2017-09-10 17:25:29 +05:30
%button.btn.btn-primary.js-upload-user-avatar{ type: 'button' }
2018-11-20 20:47:30 +05:30
= s_("Profiles|Set new profile picture")