Commit 3e8f264f authored by Ray Rafael Abenido's avatar Ray Rafael Abenido

Style: reformatted the design of 'forum' page.

parent 76619d42
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
<p> <p>
{% for post in posts %} {% for post in posts %}
<p><b>{{post.post_title}}</b> by {{post.author}} dated {{post.pub_date}}</p> <p><b>{{post.post_title}}</b> by {{post.author}} dated {{post.pub_date}}:</p>
<p> {{ post.post_body }} </p> <p> {{ post.post_body }} </p>
{% if post.reply_chain != NULL %} {% if post.reply_chain != NULL %}
<p> {% include "replychain_listing.html" with reply=post.reply_chain %} </p> <p> {% include "replychain_listing.html" with reply=post.reply_chain %} </p>
{% endif %} {% endif %}
{{ value|linebreaks }} <br>
{% endfor %} {% endfor %}
</p> </p>
\ No newline at end of file
<p><i>Reply by {{reply.author}} dated {{reply.pub_date}}</i></p> <p><i>Reply by {{reply.author}} dated {{reply.pub_date}}:</i></p>
<p>{{reply.reply_body}}</p> <p>{{reply.reply_body}}</p>
{% if reply.reply_chain != NULL %} {% if reply.reply_chain != NULL %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment