tab/lib/templates/haml/scaffold/_form.html.haml

11 lines
275 B
Plaintext
Raw Normal View History

2015-09-09 12:59:13 +00:00
= 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 -%>
2015-09-09 15:06:39 +00:00
.pure-controlls
2015-09-09 12:59:13 +00:00
= f.button :submit