Sha256: 6827142a2bdca44c9468811c18be2aaa2e818fe9f6fa190eed095224b9fada29

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

<%-
strformfor = "@#{singular_table_name}"
if !namespace_alone.blank?
  strformfor = "[:#{namespace_alone}, @#{singular_table_name} ]"
end
-%>

<%%= form_for(<%= strformfor %>) do |f| %>
  <%% if @<%= singular_table_name %>.errors.any? %>
    <div id="error_explanation">
      <h2><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h2>

      <ul>
        <%% @<%= singular_table_name %>.errors.full_messages.each do |msg| %><li><%%= msg %></li><%% end %>
      </ul>
    </div>
  <%% end %>
  <%= render_partial 'app/views/partials/_form_field.html.erb' %><!-- Beautiful_scaffold - AddField - Do not remove -->
  <div>
    <%%= link_to <%= namespace_for_route %><%= plural_table_name %>_path, :class => "btn btn-light" do %>
      <i class="fa fa-chevron-left"></i> <%%= t(:back, :default => "Back") %>
    <%% end %>
    <%%= f.submit :class => "btn btn-primary", :data => { :disable_with => t(:saving, :default => "Saving...") } %>
  </div>
<%% end %>


Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
beautiful_scaffold-2.0.3 lib/generators/templates/app/views/_form.html.erb
beautiful_scaffold-2.0.2 lib/generators/templates/app/views/_form.html.erb
beautiful_scaffold-2.0.1 lib/generators/templates/app/views/_form.html.erb
beautiful_scaffold-2.0.0 lib/generators/templates/app/views/_form.html.erb
beautiful_scaffold-2.0.0.pre lib/generators/templates/app/views/_form.html.erb