mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-10-18 08:19:59 +00:00
Initial commit with devise template from https://github.com/lewagon/rails-templates
This commit is contained in:
15
lib/templates/erb/scaffold/_form.html.erb
Normal file
15
lib/templates/erb/scaffold/_form.html.erb
Normal file
@@ -0,0 +1,15 @@
|
||||
<%# frozen_string_literal: true %>
|
||||
<%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
|
||||
<%%= f.error_notification %>
|
||||
<%%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
|
||||
|
||||
<div class="form-inputs">
|
||||
<%- attributes.each do |attribute| -%>
|
||||
<%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
|
||||
<%- end -%>
|
||||
</div>
|
||||
|
||||
<div class="form-actions">
|
||||
<%%= f.button :submit %>
|
||||
</div>
|
||||
<%% end %>
|
Reference in New Issue
Block a user