Add pandoc
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

This commit is contained in:
david 2024-07-26 03:14:07 +02:00
parent dec482bfba
commit 109dcd205c
11 changed files with 108 additions and 4 deletions

View file

@ -0,0 +1,23 @@
<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>