Files
caminus/templates/forums/_reply.html
2012-04-21 13:21:06 -04:00

18 lines
425 B
HTML

{% load markup %}
<div class="post">
<a name="reply-{{post.id}}"></a>
{% include "_profile_tile.html" with user=post.user %}
<div class="dateline">
Posted {{post.created}}
{% if post.created != post.updated %}
<br />
Edited {{post.updated}}
{% endif %}
</div>
<div class="forum-post-content">
{{post.body|markdown:"safe"}}
<br style="clear:both"/>
<a href="{%url forums.views.reply post.id%}">Reply &raquo;</a>
</div>
</div>