This is a fork of django-tagging-autocomplete, which can be found at: http://code.google.com/p/django-tagging-autocomplete/
It's virtually the same app, only it's changed to work with django-taggit: http://github.com/alex/django-taggit
Installation
Add the following line to your project's urls.py file:
(r'^taggit_autocomplete/', include('taggit_autocomplete.urls')),
Usage Using the model field
You can use TaggableManager to enable autocompletion right in your models.py file. In most cases this is the easiest solution. Example:
from django.db import models from taggit_autocomplete.managers import TaggableManager
class SomeModel(models.Model): tags = TaggableManager()