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

23 lines
463 B
Text
Raw Permalink Normal View History

2024-07-26 03:14:07 +02:00
<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>
2024-10-31 23:13:18 +01:00
<% if @report.comment %>
2024-07-26 03:14:07 +02:00
<div>
2024-10-31 23:13:18 +01:00
<%= @report.comment %>
2024-07-26 03:14:07 +02:00
</div>
<% end %>
<div >
<% @report.elements.each do |element| %>
<%= render element %>
<% end %>
</div>
</body>
</head>