a11yist/app/views/reports/edit.html.erb

9 lines
354 B
Text
Raw Normal View History

<h1><%= t("scaffold.pagetitle_edit", model: Report.model_name.human) %></h1>
<%= render "form", report: @report %>
<div class="action-row">
<%= link_to t("scaffold.link_show", model: Report.model_name.human), @report %>
2024-11-24 22:08:36 +01:00
<%= link_to t("scaffold.link_index", model: Report.model_name.human(count: 2)), project_reports_path(@report.project) %>
</div>