AICertification/app/flask-postgres/app/templates/admin_questions.html
2026-04-09 20:54:58 +02:00

36 lines
729 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Assessment-Verwaltung</h1>
<div class="admin-panel">
<h2>Kurs auswählen</h2>
<div class="table-wrap">
<table class="mandanten-table">
<thead>
<tr>
<th>ID</th>
<th>Code</th>
<th>Titel</th>
<th>Aktion</th>
</tr>
</thead>
<tbody>
{% for c in courses %}
<tr>
<td>{{ c.id }}</td>
<td>{{ c.code }}</td>
<td>{{ c.title }}</td>
<td>
<a href="/admin/questions/{{ c.id }}" class="btn-primary btn-small">Fragen verwalten</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}