tags:

views:

20

answers:

0

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