Files
fetsite/app/views/themengruppen/_form.html.erb
2014-04-11 11:44:12 +02:00

15 lines
361 B
Plaintext

<%= semantic_form_for @themengruppe do |f| %>
<%= f.inputs do %>
<%= f.input :title %>
<%= f.input :priority %>
<%= f.input :picture, :as => :file %>
<%= f.input :text %>
<% end %>
<%= f.actions do %>
<%= f.action :submit, :as => :input %>
<%= f.action :cancel,:label => I18n.t("common.back"), :as => :link %>
<% end %>
<% end %>