Fundraising in PDF.
[wolnelektury.git] / src / chunks / templatetags / chunks.py
index 7c431c1..6a891f9 100644 (file)
@@ -1,5 +1,5 @@
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django import template
 from django.core.cache import cache
@@ -25,7 +25,7 @@ def chunk(context, key, cache_time=0):
         n.save()
         content = ''
 
-    if context['request'].user.is_staff:
+    if 'request' in context and context['request'].user.is_staff:
         content = f'<span data-edit="chunks/chunk/{key}"></span>' + content
 
     return mark_safe(content)