aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/forms.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-08-27 11:03:14 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-08-27 11:03:14 +0100
commitef287a9397cd911d55a37eb98934c203a59a8154 (patch)
tree1744debb6f44b6cd2623ec028c2035497a73946a /ctrack/caf/forms.py
parent36759e44bc59747256332809097342a32ab6db19 (diff)
massive - removed migrations and reform db schema - NOT COMPLETE
Diffstat (limited to '')
-rw-r--r--ctrack/caf/forms.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/ctrack/caf/forms.py b/ctrack/caf/forms.py
index 7367ccd..928686d 100644
--- a/ctrack/caf/forms.py
+++ b/ctrack/caf/forms.py
@@ -15,9 +15,10 @@ from django.urls import reverse
from ctrack.caf.models import CAF, ApplicableSystem
from ctrack.organisations.models import Organisation
-CAFCreateInlineFormset = inlineformset_factory(
- CAF, ApplicableSystem, fields=("name", "organisation"), extra=2
-)
+# TODO - Replace this to get inlineformet working
+# CAFCreateInlineFormset = inlineformset_factory(
+# CAF, ApplicableSystem, fields=("name", "organisation"), extra=2
+# )
class ApplicableSystemCreateFromCafForm(forms.Form):