a11yist/app/views/reports/show.rtf.erb
david 729ed13521
Some checks failed
/ Run tests (push) Failing after 1m19s
/ Run system tests (push) Failing after 1m18s
/ Build, push and deploy image (push) Has been skipped
start of iteration 2
2024-10-31 23:13:18 +01:00

25 lines
722 B
Text

<h1><i class="bi bi-journal-text me-2"></i><%= @report.name %></h1>
<p class="small">
Erstellt am <%= l(@report.created_at, format: :short) %>,
zuletzt bearbeitet am <%= l(@report.updated_at, format: :short) %>
</p>
<% if @report.comment %>
<div class="mt-2 mb-4 lead">
<%= @report.comment %>
</div>
<% end %>
<div class="pt-3">
<%= turbo_frame_tag "new_element_frame" do %>
<%= render partial: "reports/new_element_button", locals: { report: @report } %>
<% end %>
</div>
<div id="element_list">
<% @report.elements.each do |element| %>
<%= turbo_frame_tag dom_id(element, :frame) do %>
<%= render element %>
<% end %>
<% end %>
</div>