summaryrefslogtreecommitdiffstats
path: root/apps/it/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/models.py')
-rw-r--r--apps/it/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/it/models.py b/apps/it/models.py
index 536518b..5882d3f 100644
--- a/apps/it/models.py
+++ b/apps/it/models.py
@@ -97,7 +97,7 @@ class Task(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
due_date = models.DateField(null=True, blank=True)
updated_at = models.DateTimeField(auto_now=True)
- completed_at = models.DateTimeField(null=True, blank=True, editable=False)
+ completed_at = models.DateTimeField(null=True, blank=True)
files = generic.GenericRelation(Attachment)
def __unicode__(self):