7754189187
Didn't bother with files in db/, config/, or features/
19 lines
514 B
Plaintext
19 lines
514 B
Plaintext
%div
|
|
= form_for [@project, @key], url: project_deploy_keys_path do |f|
|
|
-if @key.errors.any?
|
|
.alert-message.block-message.error
|
|
%ul
|
|
- @key.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.clearfix
|
|
= f.label :title
|
|
.input= f.text_field :title
|
|
.clearfix
|
|
= f.label :key
|
|
.input= f.text_area :key, class: "xlarge"
|
|
.actions
|
|
= f.submit 'Save', class: "primary btn"
|
|
= link_to "Cancel", project_deploy_keys_path(@project), class: "btn"
|
|
|