aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/templates
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2010-09-06 18:35:19 -0400
committerChris Ball <cjb@laptop.org>2010-09-07 11:00:56 -0400
commit8d1acfb3314d9276f3c6d5fa9c64ac93c4052775 (patch)
treefbfc43c346baeabad84c89e0623f58ece9bb84c9 /interfaces/web/templates
parentf1c6c6a0122c5bed01ab7a084da1f2a67e796f37 (diff)
downloadbugseverywhere-8d1acfb3314d9276f3c6d5fa9c64ac93c4052775.tar.gz
cfbe: Fix assigned-to-None search
Diffstat (limited to 'interfaces/web/templates')
-rw-r--r--interfaces/web/templates/base.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/interfaces/web/templates/base.html b/interfaces/web/templates/base.html
index 8f22d73..9666d3e 100644
--- a/interfaces/web/templates/base.html
+++ b/interfaces/web/templates/base.html
@@ -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>