aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_post.html
blob: 993c0057832d9446f78dc400385dddad8b7f3f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% from 'common.html' import disp_post %}
{% extends 'base.html' %}
{% block header %}
<h1>{%block title%}viewing post{%endblock%}</h1>
{% endblock %}

{% block content %}
{{disp_post(post,False)}}
<p>post source:</p>
<textarea readonly class="new-post-box" name="newcontent">{{post.content}}</textarea>
<a href="{{url_for('thread.view_thread',thread_id=post.thread)}}">i am satisfied</a>
{% endblock %}