{% extends 'base.html' %} {% block title %} {{ post.title }} | Author- {{post.author}} | Startup Blog{% endblock title %} {% block body %} {% load humanize %} {% load extras %}

{{ post.title }}


{{ post.content | safe }}


{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Comments: ({{ comment.count }})

{% if user.is_authenticated %}
{% csrf_token %}
{% else %}

Please loging to post comment

{% endif %} {% for comment in comment %}
{{ comment.user.username }} {{ comment.timestamp | naturaltime }}
{{ comment.comment}}
{% if user.is_authenticated %} {% else %} {% endif %}
{% if user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% for reply in replyDict|get_val:comment.id %}
{{ reply.user.username }} {{ reply.timestamp | naturaltime }}
{{ reply.comment}}
{% endfor %}
{% endfor %}
{% endblock body %}