view gpp/templates/weblinks/search_results.html @ 193:fa7d82bfb100

Implement #68: add a denormalized count field to weblinks Category model to reduce database queries.
author Brian Neal <bgneal@gmail.com>
date Sat, 03 Apr 2010 02:15:04 +0000
parents 884839ddbfde
children
line wrap: on
line source
{% extends 'weblinks/base.html' %}
{% block title %}Web Links: Search Results{% endblock %}
{% block weblinks_css %}
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
{% endblock %}
{% block weblinks_content %}
<h3>Search Results: {{ query }} - {{ page.paginator.count }} result{{ page.paginator.count|pluralize }}</h3>

{% include 'core/pagination_query.html' %}

{% if page.object_list %}
<dl>
{% for link in page.object_list %}
   {% include 'weblinks/link.html' %}
{% endfor %}
</dl>

{% include 'core/pagination_query.html' %}

{% else %}
<p>No results found.</p>
{% endif %}
{% endblock %}