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

24 lines
903 B
Text
Raw Normal View History

2024-07-19 02:29:18 +02:00
<div class="container">
<h1><i class="bi bi-journal-text me-2"></i><%= @report.name %></h1>
2024-07-19 02:29:18 +02:00
<%= @report.comment_html %>
2024-07-19 02:29:18 +02:00
<div class="my-5">
<%= turbo_frame_tag "new_element_frame" do %>
<%= link_to "#{tag.i(class: "bi bi-plus-lg")} Element".html_safe, new_element_path(report_id: @report.id), class: "btn btn-primary" %>
<% end %>
</div>
<% @report.elements.each do |element| %>
<%= turbo_frame_tag dom_id(element, :frame) do %>
<%= render element %>
<% end %>
<% end %>
<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-outline-danger" %>
</div>
</div>