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

10 lines
416 B
Text
Raw Normal View History

2024-09-05 22:54:38 +02:00
<h1><%= @check.t_name %></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 %>
2024-07-19 02:29:18 +02:00
<%= button_to t("scaffold.link_destroy", model: @check.model_name.human), @check, method: :delete, class: "btn btn-outline-danger" %>
</div>