{% extends 'base.html' %} {% load crispy_forms_tags %} {% block title %} BLOG Details {% endblock %} {% block body_block %}

{{ blog.blog_title }}

Posted By : {{ blog.author }}

Published On: {{ blog.publish_date }}
Updated On: {{ blog.update_date }}
{{ blog.liked_blog.count }} Likes | {{ blog.blog_comment.count }} Comments
{{ blog.blog_content|linebreaks }}

{% if not liked %} {% else %} {% endif %}
Comments:
{% for comment in blog.blog_comment.all %}

{{ comment.user }}

{{ comment.comment }}
{{comment.comment_date}}
{% endfor %}
{{ comment_form|crispy }} {% csrf_token %}



{% endblock %}