summaryrefslogtreecommitdiff
path: root/taskapp/models.py
diff options
context:
space:
mode:
authornishanth2010-03-02 02:12:57 +0530
committernishanth2010-03-02 02:12:57 +0530
commitca946289e5f0b54483839c8a3671096774877827 (patch)
treec8880f5a95ff8c7fc58c6ce3a3b334299373abbc /taskapp/models.py
parent95bd47579adfdb950f4724e3d3aeee4b78b9f1fc (diff)
downloadpytask-ca946289e5f0b54483839c8a3671096774877827.tar.gz
pytask-ca946289e5f0b54483839c8a3671096774877827.tar.bz2
pytask-ca946289e5f0b54483839c8a3671096774877827.zip
implemented edit_task functionality.
Diffstat (limited to 'taskapp/models.py')
-rw-r--r--taskapp/models.py2
1 files changed, 1 insertions, 1 deletions
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()