2011-12-29 14:44:16 -05:00
|
|
|
%div
|
2012-08-10 18:07:50 -04:00
|
|
|
= form_for [@project, @key], url: project_deploy_keys_path do |f|
|
2011-12-29 14:44:16 -05:00
|
|
|
-if @key.errors.any?
|
2013-01-30 09:53:18 -05:00
|
|
|
.alert.alert-error
|
2012-01-28 05:40:17 -05:00
|
|
|
%ul
|
|
|
|
- @key.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :title
|
|
|
|
.input= f.text_field :title
|
|
|
|
.clearfix
|
|
|
|
= f.label :key
|
2012-09-05 01:56:59 -04:00
|
|
|
.input
|
|
|
|
= f.text_area :key, class: [:xxlarge, :thin_area]
|
|
|
|
%p.hint
|
|
|
|
Paste a machine public key here. Read more about how generate it
|
|
|
|
= link_to "here", help_ssh_path
|
|
|
|
|
2012-01-28 05:40:17 -05:00
|
|
|
.actions
|
2013-01-29 15:18:19 -05:00
|
|
|
= f.submit 'Save', class: "btn-save btn"
|
|
|
|
= link_to "Cancel", project_deploy_keys_path(@project), class: "btn btn-cancel"
|
2011-12-29 14:44:16 -05:00
|
|
|
|