debian-mirror-gitlab/app/views/projects/deploy_keys/edit.html.haml

11 lines
484 B
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
- page_title _('Edit Deploy Key')
2020-05-30 21:06:31 +05:30
%h3.page-title= _('Edit Deploy Key')
2017-09-10 17:25:29 +05:30
%hr
%div
2020-10-24 23:57:45 +05:30
= form_for [@project, @deploy_key], include_id: false, html: { class: 'js-requires-input' } 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-29 21:17:54 +05:30
= f.submit _('Save changes'), class: 'gl-button btn btn-confirm'
= link_to _('Cancel'), project_settings_repository_path(@project), class: 'gl-button btn btn-default btn-cancel'