cfbe: Fix assigned-to-None search
authorChris Ball <cjb@laptop.org>
Mon, 6 Sep 2010 22:35:19 +0000 (18:35 -0400)
committerChris Ball <cjb@laptop.org>
Tue, 7 Sep 2010 15:00:56 +0000 (11:00 -0400)
interfaces/web/templates/base.html
interfaces/web/web.py

index 8f22d73e7d490c7463abfe7b3dd4e3b33983c28a..9666d3e23bdfffd2703995d1991c47fccd017b06 100644 (file)
@@ -90,7 +90,9 @@
             <ul class="filter-items">
                 <li><a href="/?assignee=None">Unassigned</a></li>
                 {% for assignee in assignees %}
-                    <li><a href="/?assignee={{ assignee|e }}">{{ assignee|e }}</a></li>
+                   {% if assignee != "None" %}
+                        <li><a href="/?assignee={{ assignee|e }}">{{ assignee|e }}</a></li>
+                    {% endif %}
                 {% endfor %}
             </ul>
         </div>
index 4d922e2176cb24ca50507e71c7af6a347932967d..44bdef17893f17aca189d814f22345ea77cc557f 100644 (file)
@@ -63,7 +63,7 @@ class WebInterface:
         bugs = [bug for bug in self.bd if bug.status in status]
         
         if assignee != '':
-            assignee = EMPTY if assignee == 'None' else assignee
+            assignee = None if assignee == 'None' else assignee
             bugs = [bug for bug in bugs if bug.assigned == assignee]
         
         if target != '':