aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/forms.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/organisations/forms.py b/ctrack/organisations/forms.py
index d4baf64..ab92e64 100644
--- a/ctrack/organisations/forms.py
+++ b/ctrack/organisations/forms.py
@@ -14,7 +14,7 @@ class OrganisationCreateForm(forms.ModelForm):
self.helper.layout = Layout(
Fieldset(
"",
- Field("name", css_class="form-control-lg"),
+ Field("name", css_class="form-control"),
"submode",
"oes",
"designation_type",
@@ -53,7 +53,7 @@ class AddressCreateForm(forms.ModelForm):
'country', 'other_details')
def __init__(self, *args, **kwargs):
- self.org = kwargs.pop("org")
+ # self.org = kwargs.pop("org")
super().__init__(*args, **kwargs)
def save(self):