aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/models.py
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-05-05 16:12:41 +0100
committerMR Lemon <matt@matthewlemon>2020-05-05 16:12:41 +0100
commitdade2f791d101d1fd582782c50d76fcb95ba5596 (patch)
tree247054e795a3f073dcfb232f4c31e00bd370602f /ctrack/organisations/models.py
parent9671f76654ed89f76334fbbfd0ec019ec07f5334 (diff)
tidied organisation create form - now with submit and cancel buttons
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/organisations/models.py b/ctrack/organisations/models.py
index 6824eeb..b14b03b 100644
--- a/ctrack/organisations/models.py
+++ b/ctrack/organisations/models.py
@@ -123,7 +123,7 @@ class Organisation(models.Model):
submode = models.ForeignKey(
Submode, on_delete=models.CASCADE, blank=True, null=True
)
- oes = models.BooleanField()
+ oes = models.BooleanField(default=True)
designation_type = models.IntegerField(choices=DESIGNATION_TYPE, default=1)
registered_company_name = models.CharField(max_length=255, blank=True)
registered_company_number = models.CharField(max_length=100, blank=True)