diff --git a/views.py b/views.py index 83d92ec..c4740b3 100644 --- a/views.py +++ b/views.py @@ -10,7 +10,7 @@ def sitemap(request): tags = Tag.objects.filter(snipt__public=True) tags = tags.annotate(count=Count('taggit_taggeditem_items__id')) - tags = tags.order_by('-count')[:20] + tags = tags.order_by('-count')[:50] tags = sorted(tags, key=lambda tag: tag.name) return render_to_response('sitemap.xml',