Mercurial > public > sg101
annotate gpp/templates/downloads/download_list.html @ 241:27bee3ac85e6
For #93: fix url scheme for downloads.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 15 Sep 2010 01:01:40 +0000 |
parents | 2baadae33f2e |
children | daa2916f5b34 |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'base.html' %} |
gremmie@1 | 2 {% load downloads_tags %} |
gremmie@1 | 3 {% block title %}Downloads: {{ category.title }}{% endblock %} |
gremmie@1 | 4 {% block custom_css %} |
gremmie@1 | 5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" /> |
gremmie@1 | 6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/tab-nav.css" /> |
gremmie@1 | 7 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" /> |
gremmie@1 | 8 {% endblock %} |
gremmie@1 | 9 {% block custom_js %} |
gremmie@1 | 10 <script type="text/javascript" src="{{ MEDIA_URL }}js/downloads/rating.js"></script> |
gremmie@1 | 11 {% endblock %} |
gremmie@1 | 12 {% block content %} |
gremmie@1 | 13 <h2>Downloads</h2> |
bgneal@241 | 14 {% include 'downloads/navigation.html' %} |
gremmie@1 | 15 <h3>Category: {{ category.title }}</h3> |
gremmie@1 | 16 |
gremmie@1 | 17 {% if page.object_list %} |
gremmie@1 | 18 <ul class="tab-nav"> |
bgneal@241 | 19 <li><a href="{% url downloads-category slug=category.slug sort="title" %}" |
gremmie@1 | 20 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li> |
bgneal@241 | 21 <li><a href="{% url downloads-category slug=category.slug sort="date" %}" |
gremmie@1 | 22 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li> |
bgneal@241 | 23 <li><a href="{% url downloads-category slug=category.slug sort="rating" %}" |
gremmie@1 | 24 {% ifequal s "rating" %}class="active"{% endifequal %}>Rating</a></li> |
bgneal@241 | 25 <li><a href="{% url downloads-category slug=category.slug sort="hits" %}" |
gremmie@1 | 26 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li> |
gremmie@1 | 27 </ul> |
gremmie@1 | 28 |
gremmie@1 | 29 {% include 'core/pagination.html' %} |
gremmie@1 | 30 |
gremmie@1 | 31 <dl> |
gremmie@1 | 32 {% for download in page.object_list %} |
gremmie@1 | 33 {% include 'downloads/download.html' %} |
gremmie@1 | 34 {% endfor %} |
gremmie@1 | 35 </dl> |
gremmie@1 | 36 |
gremmie@1 | 37 {% include 'core/pagination.html' %} |
gremmie@1 | 38 {% else %} |
gremmie@1 | 39 <p>No downloads in this category at this time.</p> |
gremmie@1 | 40 {% endif %} |
gremmie@1 | 41 {% endblock %} |