gitlab-org--gitlab-foss/app/views/deploy_keys/_form.html.haml

19 lines
526 B
Text
Raw Normal View History

2011-12-29 14:44:16 -05:00
%div
2012-01-17 17:46:13 -05:00
= form_for [@project, @key], :url => project_deploy_keys_path do |f|
2011-12-29 14:44:16 -05:00
-if @key.errors.any?
2012-01-28 05:40:17 -05:00
.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
2012-01-27 02:19:55 -05:00
= f.submit 'Save', :class => "primary btn"
2012-01-28 05:40:17 -05:00
= link_to "Cancel", project_deploy_keys_path(@project), :class => "btn"
2011-12-29 14:44:16 -05:00