a11yist/app/views/pages/edit.html.erb
david 70500c49a1
Some checks failed
/ Run tests (push) Successful in 2m44s
/ Run system tests (push) Failing after 2m43s
/ Build, push and deploy image (push) Successful in 4m3s
Model menus, modal edit and layout improvements
2024-11-23 19:10:09 +01:00

10 lines
366 B
Text

<h1><%= t("scaffold.pagetitle_edit", model: Page.model_name.human) %></h1>
<%= render "form", page: @page %>
<% unless modal? %>
<div class="action-row">
<%= link_to t("scaffold.link_show", model: Page.model_name.human), @page %>
<%= link_to t("scaffold.link_index", model: Page.model_name.human(count: 2)), report_pages_path(@page.report) %>
</div>
<% end %>