a11yist/app/views/pages/new.html.erb
david 42c077f6ab
Some checks failed
/ Run tests (push) Failing after 1m9s
/ Run system tests (push) Failing after 1m13s
/ Build, push and deploy image (push) Has been skipped
Gui improvements, ordering
2024-11-01 03:26:46 +01:00

11 lines
362 B
Text

<h1><%= t("scaffold.pagetitle_new", model: Page.model_name.human) %></h1>
<%= turbo_frame_tag "new_page_frame" do %>
<div class="border border-info p-3">
<%= render "form", page: @page %>
</div>
<% end %>
<div class="action-row">
<%= link_to t("scaffold.link_index", model: Page.model_name.human(count: 2)), report_pages_path(@page.report) %>
</div>