convert some more ssi to template fragment cache
[wolnelektury.git] / src / catalogue / views.py
index 81d0a02..2aa98f7 100644 (file)
@@ -731,10 +731,10 @@ def tag_box(request, pk):
 
 @ssi_included
 def collection_box(request, pk):
-    obj = get_object_or_404(Collection, pk=pk)
+    collection = get_object_or_404(Collection, pk=pk)
 
     return render(request, 'catalogue/collection_box.html', {
-        'obj': obj,
+        'collection': collection,
     })