diff options
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/forms.py | 7 |
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): |