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: b51ab3457d6e27eeb59c41e8435d8c94054edc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
- 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
      = render Pajamas::ButtonComponent.new(href: admin_deploy_keys_path) do
        = _('Cancel')