summaryrefslogtreecommitdiff
path: root/taskapp/models.py
diff options
context:
space:
mode:
authornishanth2010-03-02 02:25:28 +0530
committernishanth2010-03-02 02:25:28 +0530
commitc96afacd4dd27cbf092eb398862ac9dc120e9309 (patch)
tree4f34b6b0463e240c8442287c0b56409f3cb1739e /taskapp/models.py
parentca946289e5f0b54483839c8a3671096774877827 (diff)
downloadpytask-c96afacd4dd27cbf092eb398862ac9dc120e9309.tar.gz
pytask-c96afacd4dd27cbf092eb398862ac9dc120e9309.tar.bz2
pytask-c96afacd4dd27cbf092eb398862ac9dc120e9309.zip
now task can have a title of a deleted task.
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 4908756..9a58603 100644
--- a/taskapp/models.py
+++ b/taskapp/models.py
@@ -95,7 +95,7 @@ class Task(models.Model):
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()
+ tags_field = TagField() ## must be named some thing decent later on
credits = models.PositiveSmallIntegerField()
progress = models.PositiveSmallIntegerField(default = 0)