a11yist/app/views/pages/show.html.slim
david d1a4eeea30
Some checks failed
/ Run tests (push) Successful in 1m48s
/ Run system tests (push) Failing after 1m52s
/ Build, push and deploy image (push) Successful in 1m54s
Requested gui improvements
2024-11-09 00:43:15 +01:00

9 lines
432 B
Text

h1
= t("scaffold.pagetitle_show", model: @page.class.model_name.human)
= render @page
.action-row
= link_to t("scaffold.link_edit", model: @page.model_name.human), edit_page_path(@page)
= link_to t("scaffold.link_index", model: @page.model_name.human(count: 2)), report_pages_path(@page.report)
= button_to t("scaffold.link_destroy", model: @page.model_name.human), @page, method: :delete, class: "btn btn-outline-danger"