diff --git a/app/templates/admin/communities.html b/app/templates/admin/communities.html
index 1f574319..3d4257dd 100644
--- a/app/templates/admin/communities.html
+++ b/app/templates/admin/communities.html
@@ -18,10 +18,11 @@
Name |
Title |
Topic |
- # Posts |
+ # Posts |
Home |
Popular |
All |
+ Warning |
Actions |
{% for community in communities.items %}
@@ -34,6 +35,7 @@
{{ '✓'|safe if community.show_home else '✗'|safe }} |
{{ '✓'|safe if community.show_popular else '✗'|safe }} |
{{ '✓'|safe if community.show_all else '✗'|safe }} |
+ {{ '⚠'|safe if community.nsfw or community.nsfl or community.content_warning else ''|safe }} |
View |
Edit |
Delete
|