From 120720baf3ce09aacaddb82c0937af596aea62fe Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Fri, 30 Jan 2009 23:53:09 -0500 Subject: Implemented the status filter. --- templates/base.html | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'templates/base.html') diff --git a/templates/base.html b/templates/base.html index 8f8fb3d..66ecd2f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -19,9 +19,16 @@ $('#external-pane').hide(); $('#external-pane-content').corners('bottom 8px'); - $('#filter-assignee').click(function() { + $('#filter-assignee').click(function(e) { $('#external-pane-content').html($('#assignees').html()); $('#external-pane').fadeIn('fast'); + e.preventDefault(); + }); + + $('#filter-target').click(function(e) { + $('#external-pane-content').html($('#targets').html()); + $('#external-pane').fadeIn('fast'); + e.preventDefault(); }); $('table tr:odd').addClass('stripe'); @@ -43,8 +50,8 @@ Just show me: Open Closed - Assigned to... - Scheduled for... + Assigned to... + Scheduled for... + Create a new bug @@ -76,5 +83,13 @@ {% endfor %}

+
+

+ Unscheduled

+ {% for target in targets %} + {{ target }}
+ {% endfor %} +

+
-- cgit