13 lines
357 B
Plaintext
13 lines
357 B
Plaintext
<%= semantic_form_for [@membership.fetprofile,@membership] do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :gremium, :as=>:radio %>
|
|
<%= f.input :start %>
|
|
<%= f.input :stop %>
|
|
<%= f.input :typ ,:as=>:radio,:collection=>Membership::TYPEN.invert %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|