2011-10-09 00:36:38 +03:00
|
|
|
%div
|
|
|
|
= form_for @key, :remote => true do |f|
|
|
|
|
-if @key.errors.any?
|
|
|
|
%ul
|
|
|
|
- @key.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
|
|
|
|
2011-11-07 20:37:32 +02:00
|
|
|
.form-row
|
2011-10-09 00:36:38 +03:00
|
|
|
= f.label :title
|
|
|
|
= f.text_field :title, :style => "width:300px"
|
2011-11-07 20:37:32 +02:00
|
|
|
.form-row
|
2011-10-09 00:36:38 +03:00
|
|
|
= f.label :key
|
|
|
|
= f.text_area :key, :style => "width:300px; height:130px"
|
2011-11-07 20:37:32 +02:00
|
|
|
.form-row
|
2011-11-22 08:14:23 -05:00
|
|
|
= f.submit 'Save', :class => "grey-button"
|
2011-10-09 00:36:38 +03:00
|
|
|
|