12 lines
280 B
Plaintext
Executable File
12 lines
280 B
Plaintext
Executable File
<%%= semantic_form_for @<%= singular_name %> do |f| %>
|
|
<%%= f.inputs do %>
|
|
<%- attributes.each do |attribute| -%>
|
|
<%%= f.input :<%= attribute.name %> %>
|
|
<%- end -%>
|
|
<%% end %>
|
|
|
|
<%%= f.actions do %>
|
|
<%%= f.action :submit, :as => :input %>
|
|
<%% end %>
|
|
<%% end %>
|