Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django tag cloud plugin [closed]

Is there a good Django app out there that can take a list of tags and their frequencies of occurrence and render a tag cloud for them?

like image 384
readonly Avatar asked Jan 01 '09 23:01

readonly


3 Answers

Django-tagging has helpers for generating tag clouds.

like image 131
Ellen Teapot Avatar answered Nov 14 '22 22:11

Ellen Teapot


A little self-promotion never hurt anybody, right? http://dburke.info/blog/logarithmic-tag-clouds

like image 23
dburke Avatar answered Nov 14 '22 22:11

dburke


You could try this template tag: http://www.djangosnippets.org/snippets/140/

It works with the django-tagging app http://code.google.com/p/django-tagging/

like image 3
Ólafur Nielsen Avatar answered Nov 14 '22 20:11

Ólafur Nielsen