debian-mirror-gitlab/app/views/projects/deploy_keys/_form.html.haml

23 lines
947 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
= form_for [@project.namespace.becomes(Namespace), @project, @deploy_keys.new_key], url: namespace_project_deploy_keys_path, html: { class: "js-requires-input" } do |f|
= form_errors(@deploy_keys.new_key)
2016-06-02 11:05:42 +05:30
.form-group
= f.label :title, class: "label-light"
= f.text_field :title, class: 'form-control', autofocus: true, required: true
.form-group
= f.label :key, class: "label-light"
= f.text_area :key, class: "form-control", rows: 5, required: true
.form-group
%p.light.append-bottom-0
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")
2017-08-17 22:00:37 +05:30
.form-group
.checkbox
= f.label :can_push do
= f.check_box :can_push
%strong Write access allowed
.form-group
%p.light.append-bottom-0
Allow this key to push to repository as well? (Default only allows pull access.)
2016-06-02 11:05:42 +05:30
= f.submit "Add key", class: "btn-create btn"