view gpp/templates/admin/base_site.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 861f7d5f1b23
children 023132c90021
line wrap: on
line source
{% extends "admin/base.html" %}
{% load i18n %}
{% load custom_admin_tags %}

{% block extrastyle %}
<style type="text/css">
   #dashboard-list {
      margin-left: 10px;
      padding: 0;
   }
   #dashboard-list li {
      float: left;
      list-style: square inside none;
      margin-right: 10px;
      margin-bottom: 4px;
   }
   #dashboard-list .alert {
      color: #f55;
      font-weight: bold;
   }
</style>
{% endblock %}

{% block title %}{{ title }} | {% trans 'SG101 Site Admin' %}{% endblock %}

{% block branding %}
<h1 id="site-name">{% trans 'SurfGuitar101.com Site Administration' %}</h1>
{% endblock %}

{% block nav-global %}{% admin_dashboard user %}{% endblock %}