Files @ acd2cef27674
Branch filter:

Location: website/www/podjango/templates/podjango/cast/cast_archive_month.html

bsturmfels
Merge podjango.apps.cast into main podjango module

It's much simpler if "podjango" is the name of the Django app with a single
urls.py etc. The reason this is required is because podjango was originally a
fully-blown Django website and now it's become a Django app within the
Conservancy website.
<!-- FIXME: SFLC specific content -->
<!--  Copyright (C) 2008       Bradley M. Kuhn <bkuhn@ebb.org> -->
<!-- Permission is granted to copy, modify, redistribute, propagate, -->
<!-- and/or convey this template in any form. -->
{% extends "podjango/base_podcast.html" %}

{% block subtitle %}Archive: {{ month|date:"F, Y" }} - {% endblock %}

{% block content %}


<h1>{% include 'podjango/feed_links.inc.html' %}The Corresponding Source</h1>

<h2>Archive: {{ month|date:"F, Y" }}</h2>

{% for object in object_list %}
    <div class="pa2 mb2" style="background: #F0FFB8">
    <h3><a href="{{ object.get_absolute_url }}">{{ object.title|safe }}</a></h3>
    <p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
        {{ object.summary|safe }}
    <p><span class="continued"><a href="{{ object.get_absolute_url
    }}">Read More...</a></span></p>
    <p>Released on {{ object.pub_date|date:"F j, Y" }}; its running time is {{ object.duration }}</p>
    {% if object.tags.all %}<p class="blog-tags small">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}
    </div>
{% endfor %}

{% endblock %}