DasUnternehmen/templates/admin/questions.html

41 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="content-card">
<div class="page-header">
<h1>Fragen</h1>
<a class="btn" href="{{ url_for('admin_question_new') }}">Neue Frage</a>
</div>
<table class="admin-table">
<thead>
<tr>
<th>ID</th>
<th>Thema</th>
<th>Frage</th>
<th>Aktionen</th>
</tr>
</thead>
<tbody>
{% for f in fragen %}
<tr>
<td>{{ f.id }}</td>
<td>{{ f.kurztitel }}</td>
<td>{{ f.text }}</td>
<td class="actions">
<a class="btn btn-small"
href="{{ url_for('admin_question_edit', frage_id=f.id) }}">Bearbeiten</a>
<form method="post"
action="{{ url_for('admin_question_delete', frage_id=f.id) }}"
style="display:inline;"
onsubmit="return confirm('Frage löschen?');">
<button class="btn btn-small btn-danger">Löschen</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}