Parent: [462c18] (diff)

Child: [4c203c] (diff)

Download this file

post.html    16 lines (12 with data), 467 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}: {{post.title}}{% endblock %}
{% block header %}{{post.title}}{% endblock %}
{% block content %}
{{c.form.display(value=post, base_post=base_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 %}