made changes in addtaskform to suit tagging.
authornishanth
Mon, 22 Feb 2010 18:13:20 +0530
changeset 50 d40e86f958f7
parent 49 52b774df918e
child 51 89463859712c
made changes in addtaskform to suit tagging.
taskapp/forms/task.py
--- a/taskapp/forms/task.py	Mon Feb 22 18:07:36 2010 +0530
+++ b/taskapp/forms/task.py	Mon Feb 22 18:13:20 2010 +0530
@@ -4,7 +4,7 @@
 class TaskCreateForm(forms.ModelForm):
     class Meta:
         model = Task
-        fields = ['title', 'desc', 'tags', 'credits']
+        fields = ['title', 'desc', 'tags_field', 'credits']
     publish = forms.BooleanField(required=False)
 
 def AddMentorForm(choices,instance=None):