mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-17 17:37:08 +00:00
fix bogus check on readonly field
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user