Child: [462c18] (diff)

Download this file

post.html    14 lines (11 with data), 410 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}: {{post.title}}{% endblock %}
{% block content %}
{{c.form.display(value=post)}}
<div style="clear:both;"></div>
{% if post.discussion_thread and c.app.show_discussion %}
<div>
{{c.thread.display(value=post.discussion_thread)}}
</div>
{% endif %}
{% endblock %}