From 4884af693bfb0b9bb70ed6b3d8489267a86d90f9 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 21 Mar 2012 19:11:15 +0530 Subject: implemented tagging functionality --- testapp/exam/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testapp/exam') diff --git a/testapp/exam/models.py b/testapp/exam/models.py index 4931e44..689e931 100644 --- a/testapp/exam/models.py +++ b/testapp/exam/models.py @@ -1,7 +1,8 @@ import datetime from django.db import models from django.contrib.auth.models import User -from taggit.managers import TaggableManager +from taggit_autocomplete_modified.managers import TaggableManagerAutocomplete as TaggableManager + ################################################################################ class Profile(models.Model): """Profile for a user to store roll number and other details.""" -- cgit