argh, location optional

This commit is contained in:
Sanj 2011-10-05 00:50:05 +05:30
parent 4b2f8845e7
commit 9ac04ec4e9

View File

@ -13,7 +13,7 @@ class Project(models.Model):
extra_text = models.TextField(blank=True) extra_text = models.TextField(blank=True)
start_date = models.DateField(blank=True) start_date = models.DateField(blank=True)
end_date = models.DateField(blank=True) end_date = models.DateField(blank=True)
location = models.CharField(max_length=255) location = models.CharField(max_length=255, blank=True)
def __unicode__(self): def __unicode__(self):
return self.title return self.title