2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-15 11:27:10 +00:00

must be lower case when specifying survey stations

This commit is contained in:
2025-07-20 17:17:31 +02:00
parent 083de7fdd5
commit 1cfcbccf76

View File

@@ -215,12 +215,12 @@ class EntranceForm(ModelForm):
tag_station = forms.CharField( tag_station = forms.CharField(
required=False, required=False,
widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.t2035-zb-03a"}), widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.t2035-zb-03a"}),
label="Tag station: Survex station id, e.g. 1623.p2023-aa-01" label="Tag station: Survex station id, e.g. 1623.p2023-aa-01 (must be lower case)"
) )
other_station = forms.CharField( other_station = forms.CharField(
required=False, required=False,
widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.p2035-zb-03c"}), widget=forms.TextInput(attrs={"size": "50","placeholder": "e.g. 1623.p2035-zb-03c"}),
label="Other station: Survex station id, e.g. 1623.gps2018-aa-01" label="Other station: Survex station id, e.g. 1623.gps2018-aa-01 (must be lower case)"
) )
lat_wgs84 = forms.CharField( lat_wgs84 = forms.CharField(