forked from bofh/fetsite
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
<%= semantic_form_for @calendar do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :name %>
|
|
<%= f.input :public %>
|
|
<%= f.input :picture, :as => :file %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|