Files
qgreper/forum/templates/confirm_delete_thread.html
2023-07-24 20:02:45 +03: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 %}