2019-09-04 21:01:54 +05:30
|
|
|
- page_title _('GPG Keys')
|
2018-03-17 18:26:18 +05:30
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
.row.gl-mt-3
|
2018-03-17 18:26:18 +05:30
|
|
|
.col-lg-4.profile-settings-sidebar
|
2020-06-23 00:09:42 +05:30
|
|
|
%h4.gl-mt-0
|
2017-09-10 17:25:29 +05:30
|
|
|
= page_title
|
|
|
|
%p
|
2019-09-04 21:01:54 +05:30
|
|
|
= _('GPG keys allow you to verify signed commits.')
|
2018-03-17 18:26:18 +05:30
|
|
|
.col-lg-8
|
2020-06-23 00:09:42 +05:30
|
|
|
%h5.gl-mt-0
|
2019-09-04 21:01:54 +05:30
|
|
|
= _('Add a GPG key')
|
2017-09-10 17:25:29 +05:30
|
|
|
%p.profile-settings-content
|
2019-09-04 21:01:54 +05:30
|
|
|
- help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path('user/project/repository/gpg_signed_commits/index.md') }
|
2022-03-02 08:16:31 +05:30
|
|
|
= _('Add a GPG key for secure access to GitLab. %{help_link_start}Learn more.%{help_link_end}').html_safe % {help_link_start: help_link_start, help_link_end: '</a>'.html_safe }
|
2017-09-10 17:25:29 +05:30
|
|
|
= render 'form'
|
|
|
|
%hr
|
|
|
|
%h5
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Your GPG keys (%{count})') % { count: @gpg_keys.count }
|
2020-07-28 23:09:34 +05:30
|
|
|
.gl-mb-3
|
2017-09-10 17:25:29 +05:30
|
|
|
= render 'key_table'
|