forked from cybrespace/mastodon
11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
|
= simple_form_for(@<%= singular_table_name %>) do |f|
|
||
|
= f.error_notification
|
||
|
|
||
|
.form-inputs
|
||
|
<%- attributes.each do |attribute| -%>
|
||
|
= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %>
|
||
|
<%- end -%>
|
||
|
|
||
|
.form-actions
|
||
|
= f.button :submit
|