Created
April 25, 2011 11:32
-
-
Save d0ugal/940396 to your computer and use it in GitHub Desktop.
API thoughts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.auth.models import User | |
from django_automcomplete import Autocomplete | |
class UserAutocomplete(Autocomplete): | |
fields = ('username',) | |
class Meta: | |
models = User |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment