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

new.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: a03d6cb5a9420b3743af6fcd0bd25637015cc3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
- page_title _('New Deploy Key')
%h1.page-title.gl-font-size-h-display= _('New 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 'Create', data: { qa_selector: "add_deploy_key_button" }, pajamas_button: true
      = render Pajamas::ButtonComponent.new(href: admin_deploy_keys_path) do
        = _('Cancel')