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

12 lines
742 B
Text
Raw Normal View History

<h1><%= t("scaffold.pagetitle_show", model: @success_criterion.class.model_name.human) %></h1>
2024-07-19 02:29:18 +02:00
<%= turbo_frame_tag(dom_id(@success_criterion, :frame)) do %>
2024-07-20 16:52:12 +02:00
<% render partial: "success_criteria/success_criterion", locals: { success_criterion: @success_criterion, expanded: true } %>
2024-07-19 02:29:18 +02:00
<% end %>
<div class="action-row">
<%= link_to t("scaffold.link_edit", model: @success_criterion.model_name.human), edit_success_criterion_path(@success_criterion) %>
<%= link_to t("scaffold.link_index", model: @success_criterion.model_name.human(count: 2)), success_criteria_path %>
2024-07-19 02:29:18 +02:00
<%= button_to t("scaffold.link_destroy", model: @success_criterion.model_name.human), @success_criterion, method: :delete, class: "btn btn-outline-danger" %>
</div>