Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_key_expiring_soon_email.html.haml « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4aee9c5fded1f034225e09770bb2af3f6562573 (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 are scheduled to expire soon:')
%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 }