view media/css/bio.css @ 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 a4635c094f24
children
line wrap: on
line source
div.user_profile th {
   font-weight: bold;
   text-align: left;
   padding: 5px 5px;
}
div.user_profile td {
   font-weight: normal;
   text-align: left;
   padding: 5px 5px;
}

div.members-list table {
   border-collapse: collapse;
   width: 95%;
   border: 1px solid black;
   margin: 1em auto 1em auto;
}

div.members-list th {
   font-weight: bold;
   text-align: center;
   padding: 5px 5px;
}

div.members-list tr {
   border-top: 1px solid black;
   border-bottom: 1px solid black;
   text-align: center;
}

div.members-list td {
   padding: 5px 5px;
   text-align: center;
}

div.members-list tr.odd {
   background-color: #ddd;
}