a11yist/app/views/reports/show.odt.erb
david 109dcd205c
All checks were successful
/ Run tests (push) Successful in 1m35s
/ Run system tests (push) Successful in 2m31s
/ Build, push and deploy image (push) Successful in 6m18s
Add pandoc
2024-07-26 03:14:07 +02:00

23 lines
No EOL
473 B
Text

<html>
<head>
</head>
<body>
<h1><%= @report.name %></h1>
<small>
Erstellt am <%= l(@report.created_at, format: :short) %>,
zuletzt bearbeitet am <%= l(@report.updated_at, format: :short) %>
</small>
<% if @report.comment_html %>
<div>
<%= @report.comment_html %>
</div>
<% end %>
<div >
<% @report.elements.each do |element| %>
<%= render element %>
<% end %>
</div>
</body>
</head>