aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/caf/models.py')
-rw-r--r--ctrack/caf/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py
index 0ff9fed..590642f 100644
--- a/ctrack/caf/models.py
+++ b/ctrack/caf/models.py
@@ -53,7 +53,7 @@ class ApplicableSystem(models.Model):
"""
return Organisation.objects.get_or_create(name="DELETED ORGANISATION")[0]
- name = models.CharField(max_length=256)
+ name = models.CharField(max_length=256, help_text="System name assigned by OES")
description = models.TextField(max_length=1000, blank=True, null=True)
organisation = models.ForeignKey(
Organisation, on_delete=models.SET(get_sentinel_org)