14 lines
409 B
HTML
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 %}
|