34 lines
1.5 KiB
Text
34 lines
1.5 KiB
Text
- form = local_assigns.fetch(:form)
|
|
- deploy_key = local_assigns.fetch(:deploy_key)
|
|
- deploy_keys_project = deploy_key.deploy_keys_project_for(@project)
|
|
|
|
= form_errors(deploy_key)
|
|
|
|
.form-group
|
|
= form.label :title, class: 'col-form-label col-sm-2'
|
|
.col-sm-10= form.text_field :title, class: 'form-control', readonly: ('readonly' unless can?(current_user, :update_deploy_key, deploy_key))
|
|
|
|
.form-group
|
|
- if deploy_key.new_record?
|
|
= form.label :key, class: 'col-form-label col-sm-2'
|
|
.col-sm-10
|
|
%p.light
|
|
- link_start = "<a href='#{help_page_path('ssh/README')}' target='_blank' rel='noreferrer noopener'>".html_safe
|
|
- link_end = '</a>'
|
|
= _('Paste a machine public key here. Read more about how to generate it %{link_start}here%{link_end}').html_safe % { link_start: link_start, link_end: link_end.html_safe }
|
|
= form.text_area :key, class: 'form-control thin_area', rows: 5
|
|
- else
|
|
= form.label :fingerprint, class: 'col-form-label col-sm-2'
|
|
.col-sm-10
|
|
= form.text_field :fingerprint, class: 'form-control', readonly: 'readonly'
|
|
|
|
- if deploy_keys_project.present?
|
|
= form.fields_for :deploy_keys_projects, deploy_keys_project do |deploy_keys_project_form|
|
|
.form-group
|
|
.col-form-label.col-sm-2
|
|
.col-sm-10
|
|
= deploy_keys_project_form.label :can_push do
|
|
= deploy_keys_project_form.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.)')
|