forked from bofh/fetsite
12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
<%= semantic_form_for @neuigkeit do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :title, :placeholder=>"Titel" %>
|
|
<%= f.input :text %>
|
|
<%= f.input :datum %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|