comparison gpp/templates/weblinks/search_results.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 884839ddbfde
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'weblinks/base.html' %}
2 {% block title %}Web Links: Search Results{% endblock %}
3 {% block weblinks_css %}
4 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
5 {% endblock %}
6 {% block weblinks_content %}
7 <h3>Search Results: {{ query }}</h3>
8
9 {% include 'core/pagination_query.html' %}
10
11 {% if page.object_list %}
12 <dl>
13 {% for link in page.object_list %}
14 {% include 'weblinks/link.html' %}
15 {% endfor %}
16 </dl>
17
18 {% include 'core/pagination_query.html' %}
19
20 {% else %}
21 <p>No results found.</p>
22 {% endif %}
23 {% endblock %}