Files
fetsite/app/views/neuigkeiten/_form.html.erb
Andreas Stephanides 5e06187a94 neuigkeiten small fix
2013-09-17 19:30:34 +02:00

23 lines
746 B
Plaintext
Executable File

<%= tinymce_assets %>
<%= semantic_form_for [@neuigkeit.rubrik,@neuigkeit] do |f| %>
<%= f.inputs do %>
<%= f.input :title, :placeholder=>"Titel" %>
<%= f.input :text, :as=>:tinymce_text %>
<% f.input :datum, :as=>:datepicker %>
<%= f.input :rubrik, :as=>:radio, :collection=>Rubrik.all %>
<%= f.input :author, :as=>:radio %>
<%= f.input :picture, :as=>:file %>
<%= f.inputs :for => :calentry do |calentry| %>
<%= calentry.input :start, :as =>:datepicker %>
<%= calentry.input :ende, :as =>:datepicker %>
<%= calentry.input :typ %>
<% end %>
<% end %>
<%= f.actions do %>
<%= f.action :submit, :as => :input %>
<% end %>
<% end %>
<script>$('.datepicker').datepicker()</script>
<%= tinymce %>