19 lines
593 B
HTML
19 lines
593 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}Ergebnis{% endblock %}
|
|
{% block content %}
|
|
<section class="card">
|
|
<h1>Assessment Ergebnis</h1>
|
|
<img class="result-chart" src="{{ url_for('generated_chart', filename=chart_file) }}" alt="Assessment Grafik">
|
|
<table class="result-table">
|
|
<thead>
|
|
<tr><th>Thema</th><th>JA Antworten</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr><td>{{ row.kurztitel }}</td><td>{{ row.ja_anzahl }}</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{% endblock %}
|