diff options
author | nishanth | 2010-02-05 16:05:54 +0530 |
---|---|---|
committer | nishanth | 2010-02-05 16:05:54 +0530 |
commit | d3e9b0e20c7ab78a4d31fca706459ea72c4ea0ec (patch) | |
tree | f10883fb6eef2dc169d96842cfcb6af5cdc45099 /taskapp/models.py | |
parent | 68aadc0ccab2fce65c3ade8fb495c375465c7e5e (diff) | |
download | pytask-d3e9b0e20c7ab78a4d31fca706459ea72c4ea0ec.tar.gz pytask-d3e9b0e20c7ab78a4d31fca706459ea72c4ea0ec.tar.bz2 pytask-d3e9b0e20c7ab78a4d31fca706459ea72c4ea0ec.zip |
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
Diffstat (limited to 'taskapp/models.py')
-rw-r--r-- | taskapp/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskapp/models.py b/taskapp/models.py index 986f65d..9d7f1ce 100644 --- a/taskapp/models.py +++ b/taskapp/models.py @@ -46,7 +46,7 @@ class Profile(models.Model): class Task(models.Model): - title = models.CharField(max_length = 200, unique = True) + title = models.CharField(max_length = 100, unique = True) desc = models.TextField() status = models.CharField(max_length = 2, choices = STATUS_CHOICES, default = "UP") tags = models.CharField(max_length = 200, blank = True) |