debian-mirror-gitlab/app/views/profiles/emails/index.html.haml

56 lines
2.4 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Emails"
2017-09-10 17:25:29 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
.row.prepend-top-default
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
= page_title
%p
Control emails linked to your account
2017-09-10 17:25:29 +05:30
.col-lg-8
2016-06-02 11:05:42 +05:30
%h4.prepend-top-0
Add email address
= form_for 'email', url: profile_emails_path do |f|
.form-group
= f.label :email, class: 'label-light'
= f.text_field :email, class: 'form-control'
.prepend-top-default
= f.submit 'Add email address', class: 'btn btn-create'
%hr
%h4.prepend-top-0
Linked emails (#{@emails.count + 1})
.account-well.append-bottom-default
%ul
%li
Your Primary Email will be used for avatar detection and web based operations, such as edits and merges.
%li
Your Notification Email will be used for account notifications.
%li
Your Public Email will be displayed on your public profile.
%li
All email addresses will be used to identify your commits.
2018-11-08 19:23:39 +05:30
%ul.content-list
2014-09-02 18:07:02 +05:30
%li
2018-03-17 18:26:18 +05:30
= render partial: 'shared/email_with_badge', locals: { email: @primary_email, verified: current_user.confirmed? }
2018-11-08 19:23:39 +05:30
%span.float-right
%span.badge.badge-success Primary email
2018-03-17 18:26:18 +05:30
- if @primary_email === current_user.public_email
2018-11-08 19:23:39 +05:30
%span.badge.badge-info Public email
2018-03-17 18:26:18 +05:30
- if @primary_email === current_user.notification_email
2018-11-08 19:23:39 +05:30
%span.badge.badge-info Notification email
2016-06-02 11:05:42 +05:30
- @emails.each do |email|
%li
2018-03-17 18:26:18 +05:30
= render partial: 'shared/email_with_badge', locals: { email: email.email, verified: email.confirmed? }
2018-11-08 19:23:39 +05:30
%span.float-right
2016-06-02 11:05:42 +05:30
- if email.email === current_user.public_email
2018-11-08 19:23:39 +05:30
%span.badge.badge-info Public email
2016-06-02 11:05:42 +05:30
- if email.email === current_user.notification_email
2018-11-08 19:23:39 +05:30
%span.badge.badge-info Notification email
2018-03-17 18:26:18 +05:30
- unless email.confirmed?
- confirm_title = "#{email.confirmation_sent_at ? 'Resend' : 'Send'} confirmation email"
= link_to confirm_title, resend_confirmation_instructions_profile_email_path(email), method: :put, class: 'btn btn-sm btn-warning prepend-left-10'
= link_to profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-danger prepend-left-10' do
%span.sr-only Remove
= icon('trash')