diff --git a/logs/templates/logs/entries.html b/logs/templates/logs/entries.html
index 0a6dbf5..3ec45b5 100644
--- a/logs/templates/logs/entries.html
+++ b/logs/templates/logs/entries.html
@@ -58,22 +58,24 @@
{% endif %}
{% if entries and not filter_nsfw %}
-
-
- {% for entry in entries %}
-
- {% if request.user.is_staff %}
-
- {% if entry.hidden %}⚠{% else %}✓{% endif %}
- |
- {% endif %}
- {{ entry.created|date:"H:i:s" }} |
- {% if entry.nick %}{{ entry.nick }}{% else %}*{% endif %} |
- {{ entry.content|urlize }} |
-
- {% endfor %}
-
-
+
+
+
+ {% for entry in entries %}
+
+ {% if request.user.is_staff %}
+
+ {% if entry.hidden %}⚠{% else %}✓{% endif %}
+ |
+ {% endif %}
+ {{ entry.created|date:"H:i:s" }} |
+ {% if entry.nick %}{{ entry.nick }}{% else %}*{% endif %} |
+ {{ entry.content|urlize }} |
+
+ {% endfor %}
+
+
+
{% elif entries %}
{% include "nsfw/alert.html" with next_url=current_url %}
{% endif %}