Use tt
extension for form scaffold template (#29676)
This commit is contained in:
parent
b8dca8d22a
commit
4948a063d2
2 changed files with 0 additions and 1 deletions
10
lib/templates/haml/scaffold/_form.html.haml.tt
Normal file
10
lib/templates/haml/scaffold/_form.html.haml.tt
Normal file
|
@ -0,0 +1,10 @@
|
|||
= 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
|
Loading…
Add table
Add a link
Reference in a new issue