From 9f68c8ef99bf8ff9fd453f99b42c7796939f68da Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Wed, 2 Feb 2011 11:37:38 +0000 Subject: [PATCH] Custom fields: help_text doesn't need to be mandatory. --- helpdesk/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpdesk/models.py b/helpdesk/models.py index 52df8d78..9a34a585 100644 --- a/helpdesk/models.py +++ b/helpdesk/models.py @@ -1107,6 +1107,8 @@ class CustomField(models.Model): help_text = models.TextField( _('Help Text'), help_text=_('Shown to the user when editing the ticket'), + blank=True, + null=True ) DATA_TYPE_CHOICES = (