summaryrefslogtreecommitdiff
path: root/app/views/shared/_no_ssh.html.haml
blob: e7815e28017807bb87f7a1d6c6de9eaa26534d83 (plain)
1
2
3
4
5
6
7
8
9
- if cookies[:hide_no_ssh_message].blank? && !current_user.hide_no_ssh_key && current_user.require_ssh_key?
  .no-ssh-key-message.alert.alert-warning
    - add_ssh_key_link = link_to s_('MissingSSHKeyWarningLink|add an SSH key'), profile_keys_path, class: 'alert-link'
    - ssh_message = _("You won't be able to pull or push project code via SSH until you %{add_ssh_key_link} to your profile") % { add_ssh_key_link: add_ssh_key_link }
    #{ ssh_message.html_safe }
    .alert-link-group
      = link_to _("Don't show again"), profile_path(user: {hide_no_ssh_key: true}), method: :put, class: 'alert-link'
      |
      = link_to _('Remind later'), '#', class: 'hide-no-ssh-message alert-link'