diff --git a/templates/requests.html b/templates/requests.html
index ff265de1..ed8f31fb 100644
--- a/templates/requests.html
+++ b/templates/requests.html
@@ -46,9 +46,13 @@
{{ result.Comments }} |
{# Filed by #}
-
- {{ result.User.Username }}
-
+ {# If the record has an associated User, display a link to that user. #}
+ {# Otherwise, display nothing (an empty column). #}
+ {% if result.User %}
+
+ {{ result.User.Username }}
+
+ {% endif %}
|
{% set idle_time = config_getint("options", "request_idle_time") %}
{% set time_delta = (utcnow - result.RequestTS) | int %}