diff --git a/netbox/templates/generic/object.html b/netbox/templates/generic/object.html
index 90a37cca5..ce6113cf4 100644
--- a/netbox/templates/generic/object.html
+++ b/netbox/templates/generic/object.html
@@ -46,8 +46,10 @@ Context:
{% block subtitle %}
{% trans "Created" %} {{ object.created|annotated_date }}
- ·
- {% trans "Updated" %} {{ object.last_updated|timesince }} {% trans "ago" %}
+ {% if object.last_updated %}
+ ·
+ {% trans "Updated" %} {{ object.last_updated|timesince }} {% trans "ago" %}
+ {% endif %}
{% endblock subtitle %}