-
- tags = Tag.objects.filter(items__question__published=True) \
- .annotate(c=models.Count('items__tag')).order_by('category__slug', '-c', 'slug')
+
+ # This wouldn't happen if we were using taggit without generic relations.
+ tags = Tag.objects.raw("""
+ SELECT t.category_id, t.click_count, t.id, t.name, t.slug, count(t.id) AS c
+ FROM questions_tag t
+ LEFT JOIN questions_tagcategory c ON c.id=t.category_id
+ LEFT JOIN questions_tagitem i ON i.tag_id=t.id
+ LEFT JOIN questions_question q ON q.id=i.object_id
+ WHERE q.published
+ GROUP BY t.category_id, t.click_count, t.id, t.name, t.slug, c.slug
+ ORDER BY c.slug, c DESC, t.slug
+ """)