fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
800da99
)
Compatibility with Python 2.4.
author
Marek Stępniowski
<marek@stepniowski.com>
Thu, 18 Sep 2008 00:25:37 +0000
(
02:25
+0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Thu, 18 Sep 2008 00:25:37 +0000
(
02:25
+0200)
apps/catalogue/views.py
patch
|
blob
|
history
diff --git
a/apps/catalogue/views.py
b/apps/catalogue/views.py
index
2a826d9
..
2906359
100644
(file)
--- a/
apps/catalogue/views.py
+++ b/
apps/catalogue/views.py
@@
-109,7
+109,7
@@
def tagged_object_list(request, tags=''):
model = models.Book
shelf_is_set = (len(tags) == 1 and tags[0].category == 'set')
- theme_is_set =
any(tag.category == 'theme' for tag in tags)
+ theme_is_set =
len([tag for tag in tags if tag.category == 'theme']) > 0
if theme_is_set:
model = models.Fragment