a11yist/app/views/checks/show.html.erb

9 lines
469 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-outline-danger" %>
</div>