summaryrefslogtreecommitdiff
path: root/app/views/notify/ssh_key_expired_email.html.haml
blob: 651bdac7acbd1e9603c174ae2f3512991dd1e97e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%p
  = _('Hi %{username}!') % { username: sanitize_name(@user.name) }
%p
  = _('Your SSH keys with the following fingerprints have expired. Expired SSH keys will not be usable in future versions of GitLab:')
%table
  %tbody
    - @fingerprints.each do |fingerprint|
      %tr
        %td= fingerprint

%p
  - ssh_key_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: @target_url }
  = html_escape(_('You can create a new one or check them in your %{ssh_key_link_start}SSH keys%{ssh_key_link_end} settings.')) % { ssh_key_link_start: ssh_key_link_start, ssh_key_link_end: '</a>'.html_safe }