summaryrefslogtreecommitdiff
path: root/app/views/projects/deploy_keys/edit.html.haml
blob: f0214ade31339feefc9b99f02bd0e0ab44a00bb5 (plain)
1
2
3
4
5
6
7
8
9
10
- 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: 'gl-button btn btn-confirm'
      = link_to _('Cancel'), project_settings_repository_path(@project), class: 'gl-button btn btn-default btn-cancel'