Sha256: e3df2ec8e4e0a26fa3b181629d1f1fff103ddd2e3ca8d44e1e8060036f827ef4

Contents?: true

Size: 912 Bytes

Versions: 4

Compression:

Stored size: 912 Bytes

Contents

<%#
# Edit

This view is the template for the edit page.

It displays a header, and renders the `_form` partial to do the heavy lifting.

## Local variables:

- `page`:
  An instance of [Administrate::Page::Form][1].
  Contains helper methods to help 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
%>

<% content_for(:title) { "#{t("administrate.actions.edit")} #{page.page_title}" } %>

<header class="main-content__header" role="banner">
  <h1 class="main-content__page-title">
    <%= content_for(:title) %>
  </h1>

  <div>
    <%= link_to(
      "#{t("administrate.actions.show")} #{page.page_title}",
      [namespace, page.resource],
      class: "button",
    ) if valid_action? :show %>
  </div>
</header>

<section class="main-content__body">
  <%= render "form", page: page %>
</section>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
semantic-administrate-0.1.0 app/views/administrate/application/edit.html.erb
administrate-0.8.1 app/views/administrate/application/edit.html.erb
administrate-0.8.0 app/views/administrate/application/edit.html.erb
administrate-0.7.0 app/views/administrate/application/edit.html.erb