debian-mirror-gitlab/app/views/projects/deploy_keys/edit.html.haml
2020-10-24 23:57:45 +05:30

11 lines
446 B
Plaintext

- page_title _('Edit Deploy Key')
%h3.page-title= _('Edit Deploy Key')
%hr
%div
= form_for [@project, @deploy_key], include_id: false, html: { class: 'js-requires-input' } do |f|
= render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
.form-actions
= f.submit 'Save changes', class: 'btn-success btn'
= link_to 'Cancel', project_settings_repository_path(@project), class: 'btn btn-cancel'