{% extends "cast/cast_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block content %}

{{ blog.title }}

{{ blog.description }}

{% block feeds %}
{% if blog.is_podcast %} {% endif %}
{% endblock feeds %}
{% block filters %}
{{ filter.form | crispy }}
{% endblock filters %} {% if user.is_authenticated %} Create Arcticle {% endif %}
{% for post in posts %}

{{ post.title }}

- {{ post.author.username | title}}
{{ post.description|safe }}

{% endfor %}

{% include "pagination.html" %}

{% endblock content %} {% block javascript %} {{ block.super }} {% for post in posts %} {% for pk, audio in post.media_lookup.audio.items %} {% endfor %} {% endfor %} {% endblock javascript %}