Extending Django-tagging, adding extra field to each tag?
Posted
by victorhooi
on Stack Overflow
See other posts from Stack Overflow
or by victorhooi
Published on 2010-03-22T03:01:41Z
Indexed on
2010/03/22
3:11 UTC
Read the original article
Hit count: 371
django-urls
heya,
We're coding together a Django app to handle reviews of newspaper articles.
Each newspaper article model will an arbitrary number of tags associated with it. Also, each tag will have an optional ranking (0 to 10).
I was thinking of using django-tagging to do this (http://code.google.com/p/django-tagging/), but I'm not sure of the best way to add the ranking to the system. Should I extend django-tagging somehow? (Not sure if this is possible, without changing django-tagging's actual code?). Or is there a better way of achieving this?
Cheers, Victor
© Stack Overflow or respective owner