You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
13 years ago
|
<%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
|
||
|
<%%= f.error_notification %>
|
||
|
|
||
|
<div class="form-inputs">
|
||
|
<%- attributes.each do |attribute| -%>
|
||
|
<%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
|
||
|
<%- end -%>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-actions">
|
||
|
<%%= f.button :submit %>
|
||
|
</div>
|
||
|
<%% end %>
|