debian-mirror-gitlab/app/views/admin/deploy_keys/new.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
508 B
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
- page_title _('New Deploy Key')
2022-07-23 23:45:48 +05:30
%h1.page-title.gl-font-size-h-display= _('New public deploy key')
2015-04-26 12:48:37 +05:30
%hr
%div
2018-11-08 19:23:39 +05:30
= form_for [:admin, @deploy_key], html: { class: 'deploy-key-form' } do |f|
2017-09-10 17:25:29 +05:30
= render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
2015-04-26 12:48:37 +05:30
.form-actions
2021-06-08 01:23:25 +05:30
= f.submit 'Create', class: 'btn gl-button btn-confirm', data: { qa_selector: "add_deploy_key_button" }
2021-11-11 11:23:49 +05:30
= link_to _('Cancel'), admin_deploy_keys_path, class: 'btn gl-button btn-default btn-cancel'