diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-28 20:41:06 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-28 20:41:06 +0000 |
commit | e39760590fe3e30a5ad6c7645fe5f9d320ba8df3 (patch) | |
tree | c3f715edd52d7cb677824e1387fb68c9736be87f /core/views/expo.py | |
parent | 798ffc248e5b4d858613580a84b716f809b863e7 (diff) | |
download | troggle-e39760590fe3e30a5ad6c7645fe5f9d320ba8df3.tar.gz troggle-e39760590fe3e30a5ad6c7645fe5f9d320ba8df3.tar.bz2 troggle-e39760590fe3e30a5ad6c7645fe5f9d320ba8df3.zip |
fix bogus check on readonly field
Diffstat (limited to 'core/views/expo.py')
-rw-r--r-- | core/views/expo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/expo.py b/core/views/expo.py index 4c1ce63..e6df44f 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -553,7 +553,7 @@ class ExpoPageForm(forms.Form): "style": "vertical-align: text-top;"} ) ) - identified_login = forms.BooleanField(widget=forms.CheckboxInput(attrs={"onclick":"return false"})) # make it readonly + identified_login = forms.BooleanField(required=False,widget=forms.CheckboxInput(attrs={"onclick":"return false"})) # makes it readonly who_are_you = forms.CharField( widget=forms.Textarea( |