fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
d50d4a2
)
Added filtering by main_page to themes on main page.
author
Marek Stępniowski
<marek@stepniowski.com>
Wed, 10 Sep 2008 16:10:40 +0000
(18:10 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Wed, 10 Sep 2008 16:10:40 +0000
(18:10 +0200)
apps/catalogue/views.py
patch
|
blob
|
history
diff --git
a/apps/catalogue/views.py
b/apps/catalogue/views.py
index
64d0cde
..
72055f7
100644
(file)
--- a/
apps/catalogue/views.py
+++ b/
apps/catalogue/views.py
@@
-76,7
+76,7
@@
def main_page(request):
extra_where = 'NOT catalogue_tag.category = "set" AND catalogue_tag.main_page = 1'
tags = models.Tag.objects.usage_for_model(models.Book, counts=True, extra={'where': [extra_where]})
fragment_tags = models.Tag.objects.usage_for_model(models.Fragment, counts=True,
- extra={'where': ['catalogue_tag.category = "theme"']})
+ extra={'where': ['catalogue_tag.category = "theme"']
+ [extra_where]
})
categories = split_tags(tags)
form = forms.SearchForm()