I'm a little new to django and trying to find better ways to do something, rather than writing everything myself. I am working on a model where I need several types of tags to bind to the model, and then I want to get objects using several filtering criteria. I see that the django-tagging tags are stored for each model, so I think it is impossible to have multiple tags for each model. Example:
class Place( model ):
category = TagField()
sport = TagField()
Can this be done using django-tagging? I am missing something because it looks pretty often to me.
harry source
share