{% extends "base.html" %}
{% load staticfiles %}
{% block css %}
{{ block.super }}
{% endblock css %}
{% block content %}
Back to Blog
{% if user.is_authenticated %}
Update Entry
{% endif %}
{{ post.description|safe }}
Blub
{{ post.media_lookup}}
{% endblock content %}
{% block template_script %}
{% for pk, audio in post.media_lookup.audio.items %}
{% endfor %}
{% endblock template_script %}