Files
qgreper/forum/templates/confirm_delete_thread.html
2023-07-30 10:07:37 +03:00

14 lines
409 B
HTML

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