From ca946289e5f0b54483839c8a3671096774877827 Mon Sep 17 00:00:00 2001 From: nishanth Date: Tue, 2 Mar 2010 02:12:57 +0530 Subject: implemented edit_task functionality. --- taskapp/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'taskapp/models.py') diff --git a/taskapp/models.py b/taskapp/models.py index a429cd3..4908756 100644 --- a/taskapp/models.py +++ b/taskapp/models.py @@ -92,7 +92,7 @@ class Task(models.Model): prim_key = models.AutoField(primary_key = True) id = models.CharField(max_length = 10, unique = True) - title = models.CharField(max_length = 100, unique = True, verbose_name = u"Title", help_text = u"Keep it simple and below 100 chars.") + title = models.CharField(max_length = 100, verbose_name = u"Title", help_text = u"Keep it simple and below 100 chars.") desc = models.TextField(verbose_name = u"Description") status = models.CharField(max_length = 2, choices = STATUS_CHOICES, default = "UP") tags_field = TagField() -- cgit