2014-02-08 22:08:49 -05:00
|
|
|
%h3.page-title
|
2014-02-15 07:01:08 -05:00
|
|
|
My email addresses
|
2014-02-08 22:08:49 -05:00
|
|
|
%p.light
|
|
|
|
Your
|
|
|
|
%b Primary Email
|
2014-02-15 07:01:08 -05:00
|
|
|
will be used for account notifications, avatar detection and web based operations, such as edits and merges.
|
|
|
|
%br
|
|
|
|
All email addresses will be used to identify your commits.
|
|
|
|
|
|
|
|
%hr
|
2014-02-08 22:08:49 -05:00
|
|
|
|
2014-05-29 11:42:44 -04:00
|
|
|
.panel.panel-default
|
2014-02-08 22:08:49 -05:00
|
|
|
.title
|
|
|
|
Emails (#{@emails.count + 1})
|
|
|
|
%ul.well-list#emails-table
|
|
|
|
%li
|
|
|
|
%strong= @primary
|
|
|
|
%span.label.label-success Primary Email
|
|
|
|
- @emails.each do |email|
|
|
|
|
%li
|
|
|
|
%strong= email.email
|
|
|
|
%span.cgray
|
|
|
|
added #{time_ago_with_tooltip(email.created_at)}
|
|
|
|
= link_to 'Remove', profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-small btn-remove pull-right'
|
|
|
|
|
2014-02-15 07:01:08 -05:00
|
|
|
%h4 Add email address
|
2014-02-08 22:08:49 -05:00
|
|
|
= form_for 'email', url: profile_emails_path, html: { class: 'form-horizontal' } do |f|
|
|
|
|
.form-group
|
|
|
|
= f.label :email, class: 'control-label'
|
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :email, class: 'form-control'
|
|
|
|
.form-actions
|
2014-02-15 07:01:08 -05:00
|
|
|
= f.submit 'Add', class: 'btn btn-create'
|