Files
caminus/templates/forums/reply.html
2012-04-21 11:04:35 -04:00

15 lines
324 B
HTML

{% extends "base.html" %}
{%block content%}
<div class="item">
<h2>Replying to:</h2>
{% include 'forums/_reply.html' with post=post %}
</div>
<div class="item">
<form method="POST" action="{%url forums.views.reply post.id %}">
{% csrf_token %}
{{form.as_p}}
<input type="submit" value="Submit"/>
</form>
</div>
{%endblock%}