From c20f86c91da8614df709756e8d8e48daa3a0e1bc Mon Sep 17 00:00:00 2001 From: luxagraf Date: Tue, 13 Dec 2016 10:36:21 -0500 Subject: updated resume and income trackers to simplify --- app/income/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/income/models.py b/app/income/models.py index 9be597d..dbb03bf 100644 --- a/app/income/models.py +++ b/app/income/models.py @@ -9,8 +9,8 @@ class Gig(models.Model): title = models.CharField(max_length=200) pitch = models.TextField(null=True, blank=True) created = models.DateTimeField(default=timezone.now) - pub_date = models.DateTimeField(default=timezone.now) - due_date = models.DateField(default=timezone.now) + pub_date = models.DateTimeField(blank=True, null=True) + due_date = models.DateField(blank=True, null=True) STATUS = ( (0, "Pitched"), (1, "Accepted"), -- cgit v1.2.3