7f8a520f8a
Rename btn-new, btn-create and btn-save to btn-success Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
10 lines
457 B
Text
10 lines
457 B
Text
- page_title 'Edit Deploy Key'
|
|
%h3.page-title Edit Deploy Key
|
|
%hr
|
|
|
|
%div
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @deploy_key], 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'
|