diff --git a/pagure/templates/requests.html b/pagure/templates/requests.html
index bb0b3df..96e7b5c 100644
--- a/pagure/templates/requests.html
+++ b/pagure/templates/requests.html
@@ -8,12 +8,11 @@
- {% if status and status in [False, 'Closed'] %}
- Closed
- {% endif %}
+ {% if status and (status == False or status|lower == 'closed') %}
+ Closed {% endif -%}
Pull-requests ({{ requests|count }})
- {% if status and status not in [False, 'Closed'] %}
+ {% if status and not (status == False or status|lower == 'closed') %}
({{ oth_requests }} Closed)