diff --git a/tubearchivist/home/templates/home/video.html b/tubearchivist/home/templates/home/video.html index 904f8a34..a500a9c7 100644 --- a/tubearchivist/home/templates/home/video.html +++ b/tubearchivist/home/templates/home/video.html @@ -149,13 +149,17 @@ - {% if video.comment_count %} -
-

Comments: {{video.comment_count}}

-
-
+ {% if video.comment_count == 0 %} +
+ Video has no comments +
+ {% elif video.comment_count %} +
+

Comments: {{video.comment_count}}

+
+
{% endif %}