vote up 0 vote down star

I'm looking for a way to add "user = models.ForeignKey(User, editable=False)" to django-tagging model with templatetags support but my django knowledge is too low to understand the code of django-tagging.

flag

1 Answer

vote up 1 vote down

you need to use the tagging register function

import tagging

class UserModel(models.Model): name = models.CharField(max_length=50)

tagging.register(UserModel)

Take a look http://code.google.com/p/django-tagging/source/browse/trunk/docs/overview.txt

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.