{% extends 'forum/index.html' %} {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb topic "forum:topic_posts" topic.slug %} {% endblock breadcrumbs %} {% block title %} {{ topic }} {% endblock title %} {% block content %} {% render_breadcrumbs %}
Created by {{ topic.creator }}
{{ topic.created|timesince }} ago {% if user.is_authenticated %} {% if topic.creator == user %} {% endif %} {% else %} Login or Register to join the discussion!

{% endif %} {#
#} {#
#} {% for post in posts %} {% endfor %}

Post

{{ post }}
{{ post.description }}

{% if posts.count == 0 %} {% if user.is_authenticated %}

Nothing here yet, why not post something!

{% else %}

Login or Register post in {{ topic }}!

{% endif %} {% endif %}
{% endblock content %}