X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/88fd4555db2f2a3e5a7b4ccc81edb008dc434596..c3af41ec13e26ad2b4cb000291ff989dc1b3686f:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 81d0a02b8..2aa98f721 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -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, })