Mercurial > public > sg101
view gpp/templates/weblinks/search_results.html @ 147:152d77265da6
Implement #38: add function to mark user as a spammer. Display only active members on member list. Display login form as table (not sure why wasn't doing this before).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Dec 2009 08:11:16 +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 %}