41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="content-card">
|
|
<p><strong>Das Ergebnis mit Anmerkungen zur Verbesserung erhalten Sie via email.</strong></p>
|
|
|
|
<h1>Ihr Ergebnis</h1>
|
|
|
|
<div style="margin: 24px 0;">
|
|
<img
|
|
src="{{ url_for('generated_chart', filename=chart_file) }}"
|
|
alt="Assessment Ergebnis"
|
|
class="result-chart"
|
|
>
|
|
</div>
|
|
|
|
<table class="result-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Thema</th>
|
|
<th>Positive Einschätzugen</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
<td>{{ row.kurztitel }}</td>
|
|
<td>{{ row.ja_anzahl }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="form-actions" style="margin-top: 20px;">
|
|
<a class="btn"
|
|
href="{{ url_for('generated_pdf', filename=pdf_file) }}">
|
|
PDF herunterladen
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |