2017-03-31 08:54:38 -04:00
|
|
|
- page_title 'New Deploy Key'
|
2015-03-27 09:43:48 -04:00
|
|
|
%h3.page-title New public deploy key
|
|
|
|
%hr
|
|
|
|
|
|
|
|
%div
|
|
|
|
= form_for [:admin, @deploy_key], html: { class: 'deploy-key-form form-horizontal' } do |f|
|
2017-03-31 08:54:38 -04:00
|
|
|
= render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
|
2015-03-27 09:43:48 -04:00
|
|
|
.form-actions
|
2017-03-31 08:54:38 -04:00
|
|
|
= f.submit 'Create', class: 'btn-create btn'
|
|
|
|
= link_to 'Cancel', admin_deploy_keys_path, class: 'btn btn-cancel'
|