{% extends "blog/base.html" %} {% load blog_tags %} {% block title%}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

IMDB: {{ post.rating }}/10, Duration: {{ post.duration }}hr

Published {{ post.published }} by {{ post.author }}

{{ post.body|markdown }} {% url 'blog:post_share' post.id as the_url %} {% if the_url %}

Share this post

{% endif %}

Similar posts

{% for post in similar_posts %}

{{ post.title }}

{% empty %} There are no similar posts yet. {% endfor %} {% with comments.count as total_comments %}

{{ total_comments }} comment{{ total_comments|pluralize }}

{% endwith %} {% for comment in comments %}

Comment {{ forloop.counter }} by {{ comment.name }} {{ comment.created }}

{{ comment.body|linebreaks }}
{% empty %}

There are no comments yet

{% endfor %} {% if new_comment %}

Your comment has been added.

{% else %}

Add a new Comment

{{ comment_form.as_p }} {% csrf_token %}

{% endif %} {% endblock %}