annotate gpp/templates/downloads/download_list.html @ 310:daa2916f5b34

Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Jan 2011 04:03:48 +0000
parents 27bee3ac85e6
children 88b2b9cb8c1f
rev   line source
gremmie@1 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
gremmie@1 3 {% load downloads_tags %}
gremmie@1 4 {% block title %}Downloads: {{ category.title }}{% endblock %}
gremmie@1 5 {% block custom_css %}
gremmie@1 6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" />
gremmie@1 7 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/tab-nav.css" />
gremmie@1 8 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
gremmie@1 9 {% endblock %}
gremmie@1 10 {% block custom_js %}
gremmie@1 11 <script type="text/javascript" src="{{ MEDIA_URL }}js/downloads/rating.js"></script>
gremmie@1 12 {% endblock %}
gremmie@1 13 {% block content %}
gremmie@1 14 <h2>Downloads</h2>
bgneal@241 15 {% include 'downloads/navigation.html' %}
gremmie@1 16 <h3>Category: {{ category.title }}</h3>
gremmie@1 17
gremmie@1 18 {% if page.object_list %}
gremmie@1 19 <ul class="tab-nav">
bgneal@310 20 <li><a href="{% url 'downloads-category' slug=category.slug sort="title" %}"
gremmie@1 21 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
bgneal@310 22 <li><a href="{% url 'downloads-category' slug=category.slug sort="date" %}"
gremmie@1 23 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
bgneal@310 24 <li><a href="{% url 'downloads-category' slug=category.slug sort="rating" %}"
gremmie@1 25 {% ifequal s "rating" %}class="active"{% endifequal %}>Rating</a></li>
bgneal@310 26 <li><a href="{% url 'downloads-category' slug=category.slug sort="hits" %}"
gremmie@1 27 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li>
gremmie@1 28 </ul>
gremmie@1 29
gremmie@1 30 {% include 'core/pagination.html' %}
gremmie@1 31
gremmie@1 32 <dl>
gremmie@1 33 {% for download in page.object_list %}
gremmie@1 34 {% include 'downloads/download.html' %}
gremmie@1 35 {% endfor %}
gremmie@1 36 </dl>
gremmie@1 37
gremmie@1 38 {% include 'core/pagination.html' %}
gremmie@1 39 {% else %}
gremmie@1 40 <p>No downloads in this category at this time.</p>
gremmie@1 41 {% endif %}
gremmie@1 42 {% endblock %}