Files
fetsite/app/views/calentries/_form.html.erb
2013-08-08 09:09:34 +02:00

14 lines
309 B
Plaintext

<%= semantic_form_for @calentry do |f| %>
<%= f.inputs do %>
<%= f.input :start %>
<%= f.input :ende %>
<%= f.input :summary %>
<%= f.input :calendar, :as=> :radio %>
<%= f.input :typ %>
<% end %>
<%= f.actions do %>
<%= f.action :submit, :as => :input %>
<% end %>
<% end %>