aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-08-13 10:47:42 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-08-13 10:47:42 +0100
commitbd7ffed3034f66c16845063667f3bea7cc0a9e9a (patch)
treea1207d41cf0bc34126a4fda3a4b0692a54fa7689 /ctrack/caf
parent71c5ac488c1716d9c5bd87f9a9a194ca59282407 (diff)
added a help line to a form
Diffstat (limited to 'ctrack/caf')
-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)