diff options
author | MR Lemon <matt@matthewlemon> | 2020-04-24 20:33:40 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-04-24 20:33:40 +0100 |
commit | deaa85227e47dd70301f88caca87edb0ad3f8adf (patch) | |
tree | de6ea5623df3ba6de94c2ddadf85ae8e5fc8f449 /ctrack/caf/models.py | |
parent | 301154e0a48ea2e2966afa92912317367dfcbe1b (diff) |
made create forms more consistent
Diffstat (limited to 'ctrack/caf/models.py')
-rw-r--r-- | ctrack/caf/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py index 0151d4b..1754e61 100644 --- a/ctrack/caf/models.py +++ b/ctrack/caf/models.py @@ -48,7 +48,7 @@ class ApplicableSystem(models.Model): return Organisation.objects.get_or_create(name="DELETED ORGANISATION")[0] name = models.CharField(max_length=256) - description = models.TextField(max_length=1000) + description = models.TextField(max_length=1000, blank=True, null=True) organisation = models.ForeignKey( Organisation, on_delete=models.SET(get_sentinel_org) ) |