aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/delete_post.html
blob: 2f1659830682e312a6a503053750a580b91385e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% from 'common.html' import disp_post %}
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}deleting post{% endblock %}</1h>
{% endblock %}

{% block content %}
{{ disp_post(post, False) }}

<form method="post">
<p>confirm delete?</p>
<input type="submit" value="delete">
<a href="{{url_for('thread.view_thread',thread_id=post.thread)}}">cancel</a>
</form>
{% endblock %}