Commit b19d3160 by alex

Fixed #1. Corrected the class name in the readme.

parent d991864e
django-taggit django-taggit
============= =============
Is a simpler approach to tagging with Django. Just add a TagManager to your Is a simpler approach to tagging with Django. Just add a TaggableManager to your
model and go: model and go:
from django.db import models from django.db import models
from taggit.managers import TagManager from taggit.managers import TaggableManager
class Food(models.Model): class Food(models.Model):
# ... fields here # ... fields here
tags = TagManager() tags = TaggableManager()
Then you can use the API like so: Then you can use the API like so:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment