1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/lib/templates/erb/scaffold/_form.html.erb

13 lines
418 B
Text
Raw Normal View History

2018-11-26 08:58:09 -05:00
<%# frozen_string_literal: true %>
2019-09-03 01:37:22 -04:00
<%%= simple_form_for @<%= singular_table_name %> do |f| %>
2018-11-26 08:58:09 -05:00
<%%= f.error_notification %>
<%%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
<%- attributes.each do |attribute| -%>
2019-09-03 01:37:22 -04:00
<%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
2018-11-26 08:58:09 -05:00
<%- end -%>
2019-09-03 01:37:22 -04:00
<%%= f.button :submit %>
2018-11-26 08:58:09 -05:00
<%% end %>