{% extends 'forum/index.html' %} {% load crispy_forms_tags %} {% load staticfiles %} {% block head %} {% endblock head %} {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb post.topic "forum:topic_posts" post.topic.slug %} {% breadcrumb post "forum:post" post.topic post.slug %} {% endblock breadcrumbs %} {% block content %} {% render_breadcrumbs %}
{% if user.is_authenticated %} {% if post.creator == user or post.topic.creator == user %} {% endif %} {% endif %}

{{ post }}

posted by {{ post.creator }} on {{ post.created.date }} at {{ post.created.time }} {{ post.body }}


{% load mptt_tags %} {% if user.is_authenticated %}
{% else %}

Login or Register to join the discussion!

{% endif %} {% endblock content %}