aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_post.html
blob: fcaf29ba231f1d6563e78c598f51b4ae42600414 (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="{{post_jump(post.id)}}">i am satisfied</a>
{% endblock %}