Files
qgreper/templates/confirm_delete_thread.html
David Hoppenbrouwers 09cb2df004 Add theme
2022-10-07 19:13:16 +02:00

14 lines
321 B
HTML

{% extends 'base.html' %}
{% block content %}
<p>Are you sure you want to delete "{{ thread_title }}"?</p>
<p>
<form method="post" action="../delete" style=inline>
<input type="submit" value="Yes">
</form>
<form method="get" action=".." style=inline>
<input type="submit" value="No">
</form>
</p>
{% endblock %}