I'm using django-tagging. It works fine when I want 1 tag collection for the model. But now i need to use 2 different collections, somehow like this:
class Compare(models.Model):
title = models.CharField(max_length=255)
left_tags = TagField()
right_tags = TagField()
Is it possible with tagging? I hope somebody has an example and will share it! Thanks! :)