forked from bofh/fetsite
18 lines
530 B
Plaintext
Executable File
18 lines
530 B
Plaintext
Executable File
<%= tinymce_assets %>
|
|
<%= semantic_form_for @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 %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|
|
<script>$('.datepicker').datepicker()</script>
|
|
<%= tinymce %>
|