debian-mirror-gitlab/app/views/admin/deploy_keys/new.html.haml

32 lines
1 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "New Deploy Key"
2015-04-26 12:48:37 +05:30
%h3.page-title New public deploy key
%hr
%div
= form_for [:admin, @deploy_key], html: { class: 'deploy-key-form form-horizontal' } do |f|
2016-06-02 11:05:42 +05:30
= form_errors(@deploy_key)
2015-04-26 12:48:37 +05:30
.form-group
= f.label :title, class: "control-label"
.col-sm-10= f.text_field :title, class: 'form-control'
.form-group
= f.label :key, class: "control-label"
.col-sm-10
%p.light
Paste a machine public key here. Read more about how to generate it
2016-08-24 12:49:21 +05:30
= link_to "here", help_page_path("ssh/README")
2015-04-26 12:48:37 +05:30
= f.text_area :key, class: "form-control thin_area", rows: 5
2017-08-17 22:00:37 +05:30
.form-group
.control-label
.col-sm-10
= f.label :can_push do
= f.check_box :can_push
%strong Write access allowed
%p.light.append-bottom-0
Allow this key to push to repository as well? (Default only allows pull access.)
2015-04-26 12:48:37 +05:30
.form-actions
= f.submit 'Create', class: "btn-create btn"
= link_to "Cancel", admin_deploy_keys_path, class: "btn btn-cancel"