Django Tagging
November 22, 2009
Django has built in tagging functionality. You can add tags to a model, and then manipulate them in common ways.
models.py
from tagging.fields import TagField # add this to the model tags = TagField() def tag_words(self): return self.tags.split(' ') …