Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit.html.haml « deploy_keys « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acdf503727d77799ccdab9527ee9762f24c05be0 (plain)
1
2
3
4
5
6
7
8
9
10
- page_title _('Edit Deploy Key')
%h1.page-title.gl-font-size-h-display= _('Edit public deploy key')
%hr

%div
  = gitlab_ui_form_for [:admin, @deploy_key], html: { class: 'deploy-key-form' } do |f|
    = render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
    .form-actions
      = f.submit _('Save changes'), pajamas_button: true
      = link_to _('Cancel'), admin_deploy_keys_path, class: 'btn gl-button btn-default btn-cancel'