<%# # 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? %>

<%= pluralize(page.resource.errors.count, "error") %> prohibited this <%= page.resource_name %> from being saved:

<% end %> <% page.attributes.each do |attribute| -%>
<%= render_field attribute, f: f %>
<% end -%>
<%= f.submit %>
<% end %>