summaryrefslogtreecommitdiff
path: root/app/views/settings/emails/index.html.haml
blob: c67041affebfc691e8bbaba6201ca7bafc022372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
- page_title _('Emails')
- @content_class = "limit-container-width" unless fluid_layout

.row.prepend-top-default
  .col-lg-4.profile-settings-sidebar
    %h4.prepend-top-0
      = page_title
    %p
      = _('Control emails linked to your account')
  .col-lg-8
    %h4.prepend-top-0
      = _('Add email address')
    = form_for 'email', url: settings_emails_path do |f|
      .form-group
        = f.label :email, _('Email'), class: 'label-bold'
        = f.text_field :email, class: 'form-control'
      .prepend-top-default
        = f.submit _('Add email address'), class: 'btn btn-success'
    %hr
    %h4.prepend-top-0
      = _('Linked emails (%{email_count})') % { email_count: @emails.count + 1 }
    .account-well.append-bottom-default
      %ul
        %li
          = _('Your Primary Email will be used for avatar detection.')
        %li
          = _('Your Commit Email will be used for web based operations, such as edits and merges.')
        %li
          - address = settings_notifications_path
          - notification_message = _('Your Default Notification Email will be used for account notifications if a %{openingTag}group-specific email address%{closingTag} is not set.') % { openingTag: "<a href='#{address}'>".html_safe, closingTag: '</a>'.html_safe}
          = notification_message.html_safe
        %li
          = _('Your Public Email will be displayed on your public profile.')
        %li
          = _('All email addresses will be used to identify your commits.')
    %ul.content-list
      %li
        = render partial: 'shared/email_with_badge', locals: { email: @primary_email, verified: current_user.confirmed? }
        %span.float-right
          %span.badge.badge-success= s_('Profiles|Primary email')
          - if @primary_email === current_user.commit_email
            %span.badge.badge-info= s_('Profiles|Commit email')
          - if @primary_email === current_user.public_email
            %span.badge.badge-info= s_('Profiles|Public email')
          - if @primary_email === current_user.notification_email
            %span.badge.badge-info= s_('Profiles|Default notification email')
      - @emails.each do |email|
        %li
          = render partial: 'shared/email_with_badge', locals: { email: email.email, verified: email.confirmed? }
          %span.float-right
            - if email.email === current_user.commit_email
              %span.badge.badge-info= s_('Profiles|Commit email')
            - if email.email === current_user.public_email
              %span.badge.badge-info= s_('Profiles|Public email')
            - if email.email === current_user.notification_email
              %span.badge.badge-info= s_('Profiles|Notification email')
            - unless email.confirmed?
              - confirm_title = "#{email.confirmation_sent_at ? _('Resend confirmation email') : _('Send confirmation email')}"
              = link_to confirm_title, resend_confirmation_instructions_settings_email_path(email), method: :put, class: 'btn btn-sm btn-warning prepend-left-10'

            = link_to settings_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')