Reorganize template names

This commit is contained in:
Trever Fischer
2012-04-21 11:04:35 -04:00
parent 418570681e
commit 37703b155f
3 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
{% load mptt_tags %}
<div class="forum-post">
{% include "forums/_post_children.html" with post=post %}
<div class="forum-post root">
{% include "forums/_reply.html" with post=post %}
{% recursetree post.get_descendants %}
<div class="forum-post">
{% include "forums/_post_children.html" with post=node %}
{% include "forums/_reply.html" with post=node %}
{{children}}
</div>
{%endrecursetree%}

View File

@@ -2,7 +2,7 @@
{%block content%}
<div class="item">
<h2>Replying to:</h2>
{% include 'forums/_post_children.html' with post=post %}
{% include 'forums/_reply.html' with post=post %}
</div>
<div class="item">
<form method="POST" action="{%url forums.views.reply post.id %}">