diff options
author | Dan McGee <dan@archlinux.org> | 2012-12-29 12:26:50 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-12-29 12:26:50 -0600 |
commit | 39a603bf65c4aec780e4711074e9ed27fb7c301e (patch) | |
tree | 0fe9a20dc9580c80438fbfe382bc6bfe01331880 /todolists/utils.py | |
parent | abe02e3a2a6cf4fd4b0b82c2a1dd4259a9a5debe (diff) |
Defer the 'raw' field when listing todolists
A lot like skipping fetching of the news content; we definitely don't
need this just to list the todolists on index pages.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists/utils.py')
-rw-r--r-- | todolists/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todolists/utils.py b/todolists/utils.py index d084c645..0daca3b6 100644 --- a/todolists/utils.py +++ b/todolists/utils.py @@ -19,7 +19,7 @@ SELECT todolist_id, count(*), sum(CASE WHEN status = %s THEN 1 ELSE 0 END) def get_annotated_todolists(incomplete_only=False): - lists = Todolist.objects.all().select_related( + lists = Todolist.objects.all().defer('raw').select_related( 'creator').order_by('-created') lookup = todo_counts() |