Revert usage of NumberField for geo_lat/geo_lon, causes trouble with German locale

This commit is contained in:
Raphael Michel
2021-01-18 12:47:11 +01:00
parent fc6b644587
commit 19c328b6e7
2 changed files with 0 additions and 6 deletions

View File

@@ -55,8 +55,6 @@ class SubEventForm(I18nModelForm):
'date_admission': SplitDateTimePickerWidget(attrs={'data-date-after': '#id_date_from_0'}),
'presale_start': SplitDateTimePickerWidget(),
'presale_end': SplitDateTimePickerWidget(attrs={'data-date-after': '#id_presale_start_0'}),
'geo_lat': forms.NumberInput(attrs={'min': '-90', 'max': '90'}),
'geo_lon': forms.NumberInput(attrs={'min': '-180', 'max': '180'}),
}