annotate gpp/templates/downloads/search_results.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 42f22c56ab05
rev   line source
gremmie@1 1 {% extends 'base.html' %}
gremmie@1 2 {% load downloads_tags %}
gremmie@1 3 {% block title %}Downloads: Search Results{% 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>Search Results: {{ query }}</h3>
gremmie@1 16
gremmie@1 17 {% if page.object_list %}
gremmie@1 18 {% include 'core/pagination_query.html' %}
gremmie@1 19
gremmie@1 20 <dl>
gremmie@1 21 {% for download in page.object_list %}
gremmie@1 22 {% include 'downloads/download.html' %}
gremmie@1 23 {% endfor %}
gremmie@1 24 </dl>
gremmie@1 25
gremmie@1 26 {% include 'core/pagination_query.html' %}
gremmie@1 27 {% else %}
gremmie@1 28 <p>No results found for &quot;{{ query }}&quot;.</p>
gremmie@1 29 {% endif %}
gremmie@1 30 {% endblock %}