annotate gpp/templates/downloads/download_list.html @ 12:f408971657b9

Changed the shoutbox: posts are now made by Ajax. The smiley farm is loaded only on demand. jQuery is now in the base template. May add scrolling later.
author Brian Neal <bgneal@gmail.com>
date Wed, 15 Apr 2009 01:13:17 +0000
parents b6263ac72052
children 2baadae33f2e
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>
gremmie@1 14 {% downloads_navigation %}
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">
gremmie@1 19 <li><a href="{% url downloads-category category=category.id,sort="title",page="1" %}"
gremmie@1 20 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
gremmie@1 21 <li><a href="{% url downloads-category category=category.id,sort="date",page="1" %}"
gremmie@1 22 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
gremmie@1 23 <li><a href="{% url downloads-category category=category.id,sort="rating",page="1" %}"
gremmie@1 24 {% ifequal s "rating" %}class="active"{% endifequal %}>Rating</a></li>
gremmie@1 25 <li><a href="{% url downloads-category category=category.id,sort="hits",page="1" %}"
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 %}