fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
0548123
)
fix for non-unique galleries
author
Jan Szejko
<janek37@gmail.com>
Wed, 9 Aug 2017 15:29:33 +0000
(17:29 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Wed, 9 Aug 2017 15:29:33 +0000
(17:29 +0200)
apps/wiki/views.py
patch
|
blob
|
history
diff --git
a/apps/wiki/views.py
b/apps/wiki/views.py
index
fcbdf8b
..
f8ba46e
100644
(file)
--- a/
apps/wiki/views.py
+++ b/
apps/wiki/views.py
@@
-220,9
+220,9
@@
def gallery(request, directory):
images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)]
images.sort()
- book
= Book.objects.get
(gallery=directory)
+ book
s = Book.objects.filter
(gallery=directory)
- if not
book.public
and not request.user.is_authenticated():
+ if not
all(book.public for book in books)
and not request.user.is_authenticated():
return HttpResponseForbidden("Not authorized.")
return JSONResponse(images)