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