23 lines
No EOL
473 B
Text
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> |