{% extends "cast/cast_base.html" %} {% load i18n %} {% load static %} {% if comments_enabled %} {% load comments %} {% endif %} {% block css %} {{ block.super }} {% if comments_enabled %} {% endif %} {% endblock css %} {% block content %} Back to Blog {% if user.is_authenticated %} Update Entry {% endif %}

{{ post.title }}

{{ post.author.username | title}}
{{ post.description|safe }}
{% if comments_enabled %}

{% trans "Comments" %}:

{% render_comment_list for object %} {% render_comment_form for object %}

{% endif %} {% endblock content %} {% block javascript %} {% if comments_enabled %} {% endif %} {{ block.super }} {% if comments_enabled %} {% endif %} {% if post.has_audio %} {% for pk, audio in post.media_lookup.audio.items %} {% endfor %} {% endif %} {% endblock javascript %}