Mercurial > public > sg101
view gpp/templates/weblinks/search_results.html @ 145:71cb4208dc98
Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Dec 2009 00:03:10 +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 %}