Django Tag Plugin Plugin

Is there a good Django application that can take a list of tags and their frequency and display a tag cloud for them?

+6
django tag-cloud
source share
6 answers

Django-tagging has helpers for creating tag clouds.

+8
source share

A bit of self-promotion will never hurt anyone, right? http://dburke.info/blog/logarithmic-tag-clouds

+4
source share

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

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

+3
source share

Grasp the trunk and it will work on 1.0

+1
source share

currently facing the same problem, I found that these links are useful for the tag template - so you won’t need to enter all the templates for tagging from scratch:

hope this can help :)

0
source share

This is shameless self-promotion, but I just released a very simple template tag helper to do this, as I had the same need and didn’t want to use something heavier like Django-tagging.

This does not make the tag cloud tough, but it does the necessary calculations and stores the result in an attribute that can be easily referenced in HTML / CSS.

https://github.com/niconoe/django-nuages-tag

0
source share

All Articles