2011-10-16 23:07:10 +02:00
|
|
|
%div
|
2011-11-25 23:19:14 +01:00
|
|
|
.ui-box.width-100p
|
|
|
|
%h3
|
|
|
|
= @snippet.new_record? ? "New snippet" : "Edit snippet ##{@snippet.id}"
|
|
|
|
= form_for [@project, @snippet] do |f|
|
|
|
|
.data.no-padding
|
|
|
|
%table.no-borders
|
|
|
|
-if @snippet.errors.any?
|
|
|
|
%tr
|
|
|
|
%td Errors
|
|
|
|
%td
|
|
|
|
#error_explanation
|
|
|
|
- @snippet.errors.full_messages.each do |msg|
|
|
|
|
%span= msg
|
|
|
|
%br
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2011-11-25 23:19:14 +01:00
|
|
|
%tr
|
|
|
|
%td= f.label :title
|
|
|
|
%td= f.text_field :title, :placeholder => "Example Snippet"
|
|
|
|
%tr
|
|
|
|
%td= f.label :file_name
|
|
|
|
%td= f.text_field :file_name, :placeholder => "example.rb"
|
|
|
|
%tr
|
|
|
|
%td= f.label "Lifetime"
|
|
|
|
%td= f.select :expires_at, lifetime_select_options
|
|
|
|
%tr
|
|
|
|
%td{:colspan => 2}
|
|
|
|
= f.label :content, "Code"
|
|
|
|
%br
|
|
|
|
%br
|
|
|
|
= f.text_area :content
|
2011-10-26 15:46:25 +02:00
|
|
|
|
2011-11-25 23:19:14 +01:00
|
|
|
.buttons
|
|
|
|
= f.submit 'Save', :class => "grey-button"
|