Improved ChargeForm and TrainerForm.

This commit is contained in:
2018-01-20 16:17:45 +01:00
parent 8bb1733427
commit 346249f623
3 changed files with 46 additions and 19 deletions

View File

@@ -34,7 +34,7 @@ class ChoiceSet(object):
class CountryChoiceSet(Countries):
first = ['DE', 'AU', 'CH', 'FR', 'IT']
first = ['DE', 'AUT', 'CH', 'FR', 'IT']
first_repeat = True
first_break = '--'
@@ -96,6 +96,7 @@ SPORT_CHOICES = ChoiceSet([
TERRAIN_CHOICES = ChoiceSet([
('gym', _(u'Kletterhalle')),
('crag', _(u'Klettergarten')),
('flats', _(u'Flachland')),
('submountains', _(u'Mittelgebirge')),
('alpine', _(u'Alpin')),
])