fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed removing '/' in book2txt.py.
[wolnelektury.git]
/
apps
/
catalogue
/
views.py
diff --git
a/apps/catalogue/views.py
b/apps/catalogue/views.py
index
ade37e5
..
0525374
100644
(file)
--- a/
apps/catalogue/views.py
+++ b/
apps/catalogue/views.py
@@
-103,7
+103,7
@@
def tagged_object_list(request, tags=''):
raise Http404
model = models.Book
raise Http404
model = models.Book
- shelf_is_set =
any(tag.category == 'set' for tag in tags
)
+ shelf_is_set =
(len(tags) == 1 and tags[0].category == 'set'
)
theme_is_set = any(tag.category == 'theme' for tag in tags)
if theme_is_set:
model = models.Fragment
theme_is_set = any(tag.category == 'theme' for tag in tags)
if theme_is_set:
model = models.Fragment