9 lines
245 B
Text
9 lines
245 B
Text
= simple_form_for(@#{singular_table_name}) do |f|
|
|
= f.error_notification
|
|
|
|
.form-inputs
|
|
- attributes.each do |attribute|
|
|
= f.send(attribute.reference? ? :association : :input, attribute.name)
|
|
|
|
.form-actions
|
|
= f.button :submit
|