Sha256: 466b67fd0d95252baa4abcc56bdfb93bb0f89c17afbeda86f01357b3c71c294d
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
Contents
<%# # Form Partial This partial is rendered on a resource's `new` and `edit` pages, and renders all form fields for a resource's editable attributes. ## Local variables: - `page`: An instance of [Administrate::Page::Form][1]. Contains helper methods to display a form, and knows which attributes should be displayed in the resource's form. [1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Form %> <%= form_for([namespace, page.resource], html: { class: "form" }) do |f| %> <% if page.resource.errors.any? %> <div id="error_explanation"> <h2> <%= pluralize(page.resource.errors.count, "error") %> prohibited this <%= page.resource_name %> from being saved: </h2> <ul> <% page.resource.errors.full_messages.each do |message| %> <li class="flash-error"><%= message %></li> <% end %> </ul> </div> <% end %> <% page.attributes.each do |attribute| -%> <div class="field-unit field-unit--<%= attribute.html_class %>"> <%= render_field attribute, f: f %> </div> <% end -%> <div class="form-actions"> <%= f.submit %> </div> <% end %>
Version data entries
6 entries across 6 versions & 2 rubygems