15 lines
482 B
HTML
15 lines
482 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<p>Are you sure you want to delete this comment on "{{ thread_title }}"?</p>
|
|
<div class=comment>{{ minimd(text) | safe }}</div>
|
|
<p>
|
|
<form method="post" action="{{ url_for('delete_comment', comment_id = comment_id) }}" style=inline>
|
|
<input type="submit" value="Yes">
|
|
</form>
|
|
<form method="get" action="{{ url_for('comment', comment_id = comment_id) }}" style=inline>
|
|
<input type="submit" value="No">
|
|
</form>
|
|
</p>
|
|
{% endblock %}
|