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

11 lines
454 B
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
- page_title 'Edit Deploy Key'
%h3.page-title Edit Deploy Key
%hr
%div
2018-11-08 19:23:39 +05:30
= form_for [@project.namespace.becomes(Namespace), @project, @deploy_key], 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
= f.submit 'Save changes', class: 'btn-save btn'
= link_to 'Cancel', project_settings_repository_path(@project), class: 'btn btn-cancel'