2019-07-07 11:18:12 +05:30
|
|
|
- page_title _('Edit Deploy Key')
|
|
|
|
%h3.page-title= _('Edit public deploy key')
|
2017-09-10 17:25:29 +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 }
|
|
|
|
.form-actions
|
2021-04-17 20:07:23 +05:30
|
|
|
= f.submit _('Save changes'), class: 'btn gl-button btn-confirm'
|
|
|
|
= link_to _('Cancel'), admin_deploy_keys_path, class: 'btn gl-button btn-default btn-cancel'
|