mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
15 lines
305 B
Twig
15 lines
305 B
Twig
<div class="reports-content">
|
|
|
|
{% set reports = admin.generateReports() %}
|
|
|
|
<div class="report-output">
|
|
{% for title, report in reports %}
|
|
<h1>{{ title }}</h1>
|
|
{{ report|raw }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% include 'partials/modal-changes-detected.html.twig' %}
|
|
|
|
|
|
</div>
|