annotate media/js/forums_mod.js @ 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 d1b0b86441c0
children
rev   line source
bgneal@112 1 $(document).ready(function() {
bgneal@112 2 var master = $('#forums-master-topic');
bgneal@112 3 var topics = $('.forums-topic_check');
bgneal@112 4 master.click(function() {
bgneal@112 5 var state = this.checked;
bgneal@112 6 topics.each(function() {
bgneal@112 7 this.checked = state;
bgneal@112 8 });
bgneal@112 9 });
bgneal@112 10 topics.click(function() {
bgneal@112 11 if (master[0].checked && !this.checked) {
bgneal@112 12 master[0].checked = false;
bgneal@112 13 }
bgneal@112 14 });
bgneal@112 15 });