2017-03-31 08:54:38 -04:00
|
|
|
- page_title 'Edit Deploy Key'
|
|
|
|
%h3.page-title Edit Deploy Key
|
|
|
|
%hr
|
|
|
|
|
|
|
|
%div
|
2018-04-12 16:11:22 -04:00
|
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @deploy_key], html: { class: 'js-requires-input' } do |f|
|
2017-03-31 08:54:38 -04:00
|
|
|
= render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
|
|
|
|
.form-actions
|
2018-09-18 05:58:22 -04:00
|
|
|
= f.submit 'Save changes', class: 'btn-success btn'
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to 'Cancel', project_settings_repository_path(@project), class: 'btn btn-cancel'
|