annotate bns_website/templates/admin/base_site.html @ 22:6cb0d49187ae

I added a list_filter and search_fields to the model admin for the news app. That way you can sort by date and search the title and content.
author Bob Mourlam <bob.mourlam@gmail.com>
date Mon, 31 Oct 2011 21:45:03 -0500
parents 48ff23eab86a
children
rev   line source
bgneal@6 1 {% extends "admin/base.html" %}
bgneal@6 2 {% load i18n %}
bgneal@6 3
bgneal@6 4 {% block title %}{{ title }} | {% trans 'Brave New Surf Site Admin' %}{% endblock %}
bgneal@6 5
bgneal@6 6 {% block branding %}
bgneal@6 7 <h1 id="site-name">{% trans 'Brave New Surf Administration' %}</h1>
bgneal@6 8 {% endblock %}
bgneal@6 9
bgneal@6 10 {% block nav-global %}{% endblock %}