annotate gpp/templates/downloads/search_results.html @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents 42f22c56ab05
children
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 %}
bgneal@22 15 <h3>Search Results: {{ query }} - {{ page.paginator.count }} result{{ page.paginator.count|pluralize }}</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 %}