diff options
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/forms.py b/core/forms.py index 5cbbe95..1c2c299 100644 --- a/core/forms.py +++ b/core/forms.py @@ -210,7 +210,7 @@ class EntranceLetterForm(ModelForm): """ # This only needs to be required=True for the second and subsequent entrances, not the first. Tricky. - entranceletter = forms.CharField(required=True, widget=forms.TextInput(attrs={"size": "2"})) + entranceletter = forms.CharField(required=False, widget=forms.TextInput(attrs={"size": "2"})) class Meta: model = CaveAndEntrance |