From fc2dbde06456944b7c1cd06f6daadbe4ddb71552 Mon Sep 17 00:00:00 2001 From: moanos Date: Tue, 12 Aug 2025 06:28:03 +0200 Subject: [PATCH] feat: make 20km default --- src/fellchensammlung/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/forms.py b/src/fellchensammlung/forms.py index aed247e..cc4bcb6 100644 --- a/src/fellchensammlung/forms.py +++ b/src/fellchensammlung/forms.py @@ -153,5 +153,5 @@ class RescueOrgSearchForm(forms.Form): template_name = "fellchensammlung/forms/form_snippets.html" location_string = forms.CharField(max_length=100, label=_("Stadt"), required=False) - max_distance = forms.ChoiceField(choices=DistanceChoices, initial=DistanceChoices.ONE_HUNDRED, + max_distance = forms.ChoiceField(choices=DistanceChoices, initial=DistanceChoices.TWENTY, label=_("Suchradius"))