Mercurial > public > sg101
view gpp/templates/weblinks/search_results.html @ 63:5899e308cdb3
Sigh, changed the donations data format because it seems to be different than the stand-alone IPN tester. The month name doesn't have a dot after it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 27 Jun 2009 21:40: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 %}