10 lines
471 B
Text
10 lines
471 B
Text
|
|
<h1><%= t("scaffold.pagetitle_show", model: @report.class.model_name.human) %></h1>
|
||
|
|
|
||
|
|
<%= render @report %>
|
||
|
|
|
||
|
|
<div class="action-row">
|
||
|
|
<%= link_to t("scaffold.link_edit", model: @report.model_name.human), edit_report_path(@report) %>
|
||
|
|
<%= link_to t("scaffold.link_index", model: @report.model_name.human(count: 2)), reports_path %>
|
||
|
|
<%= button_to t("scaffold.link_destroy", model: @report.model_name.human), @report, method: :delete, class: "btn btn-warning" %>
|
||
|
|
</div>
|