adding due_date form and model field

This commit is contained in:
tschmidt
2012-01-20 12:48:38 -08:00
parent 0f38b688a1
commit 01b0adc733
4 changed files with 175 additions and 1356 deletions

View File

@ -326,6 +326,12 @@ class Ticket(models.Model):
help_text=_('1 = Highest Priority, 5 = Low Priority'),
)
due_date = models.DateTimeField(
_('Due on'),
blank=True,
null=True,
)
last_escalation = models.DateTimeField(
blank=True,
null=True,