forked from bofh/fetsite
14 lines
447 B
Plaintext
14 lines
447 B
Plaintext
<%= semantic_form_for @gremium do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :name %>
|
|
<%= f.input :desc %>
|
|
<%= f.input :typ, :as => :select, :collection => Gremium::TYPEN.invert %>
|
|
<%= f.input :geschlecht, :as => :select, :collection => Gremium::GESCHLECHT.invert %>
|
|
<%= f.input :thema, :as=> :select, :collection => Thema.all %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|