Commit c4b99058 authored by Phil Hughes's avatar Phil Hughes

Emails settings

Closes #13857
parent 1fa7671f
...@@ -55,6 +55,18 @@ ...@@ -55,6 +55,18 @@
} }
} }
.account-well {
padding: 10px 10px;
background-color: #FAFAFA;
border: 1px solid #E5E5E5;
border-radius: 3px;
ul {
padding-left: 20px;
margin-bottom: 0;
}
}
.calendar-hint { .calendar-hint {
margin-top: -12px; margin-top: -12px;
float: right; float: right;
......
- page_title "Emails" - page_title "Emails"
- header_title page_title, profile_emails_path - header_title page_title, profile_emails_path
.alert.alert-help.prepend-top-default .row.prepend-top-default
%ul .col-lg-3.profile-settings-sidebar
%li %h4.prepend-top-0
Your = page_title
%b Primary Email %p
will be used for avatar detection and web based operations, such as edits and merges. Control emails linked to your account
%li .col-lg-9
Your %h4 Add email address
%b Notification Email = form_for 'email', url: profile_emails_path do |f|
will be used for account notifications. .form-group
%li = f.label :email, class: 'label-light'
Your = f.text_field :email, class: 'form-control'
%b Public Email .prepend-top-default
will be displayed on your public profile. = f.submit 'Add email address', class: 'btn btn-create'
%li %hr
All email addresses will be used to identify your commits. %h4
Linked emails (#{@emails.count + 1})
.panel.panel-default .account-well.append-bottom-default
.panel-heading %ul
Emails (#{@emails.count + 1}) %li
%ul.well-list#emails-table Your Primary Email will be used for avatar detection and web based operations, such as edits and merges.
%li %li
%strong= @primary Your Notification Email will be used for account notifications.
%span.label.label-success Primary Email %li
- if @primary === current_user.public_email Your Public Email will be displayed on your public profile.
%span.label.label-info Public Email %li
- if @primary === current_user.notification_email All email addresses will be used to identify your commits.
%span.label.label-info Notification Email %ul.well-list
- @emails.each do |email|
%li %li
%strong= email.email = @primary
- if email.email === current_user.public_email %span.pull-right
%span.label.label-info Public Email %span.label.label-success Primary Email
- if email.email === current_user.notification_email - if @primary === current_user.public_email
%span.label.label-info Notification Email %span.label.label-info Public Email
%span.cgray - if @primary === current_user.notification_email
added #{time_ago_with_tooltip(email.created_at)} %span.label.label-info Notification Email
= link_to 'Remove', profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove pull-right' - @emails.each do |email|
%li
%h4 Add email address = email.email
= form_for 'email', url: profile_emails_path, html: { class: 'form-horizontal' } do |f| %span.pull-right
.form-group - if email.email === current_user.public_email
= f.label :email, class: 'control-label' %span.label.label-info Public Email
.col-sm-10 - if email.email === current_user.notification_email
= f.text_field :email, class: 'form-control' %span.label.label-info Notification Email
.form-actions = link_to 'Remove', profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove pull-right'
= f.submit 'Add email address', class: 'btn btn-create'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment