# HG changeset patch # User Nishanth Amuluru # Date 1294501436 -19800 # Node ID 539e7a0b5d860b10846215a179a37afc4e940472 # Parent 8165274cafa198a0f9c0656cbaf236f28b93b6fb Included the missing imports diff -r 8165274cafa1 -r 539e7a0b5d86 pytask/taskapp/models.py --- a/pytask/taskapp/models.py Sat Jan 08 21:11:41 2011 +0530 +++ b/pytask/taskapp/models.py Sat Jan 08 21:13:56 2011 +0530 @@ -1,4 +1,5 @@ from django.db import models +from django.contrib.auth.models import User import tagging from tagging.fields import TagField @@ -12,6 +13,8 @@ ("DL", "Deleted"), ("CM", "Completed")) +UPLOADS_DIR = "./pytask/static/uploads" + class Task(models.Model): uniq_key = models.CharField(max_length = 10, unique = True)