Coupled number of trainers with min/max participants. Modified some

choices.
This commit is contained in:
2018-02-19 13:28:16 +01:00
parent f0d052430a
commit 7641079925
6 changed files with 194 additions and 123 deletions

View File

@@ -51,7 +51,11 @@ ACCOMMODATION_CHOICES = ChoiceSet([
('NONE', _(u'Keine (tägliche Anreise)')),
('biwi', _(u'Biwak')),
('camp', _(u'Zelt')),
('campsite', _(u'Campingplatz')),
('hut_shelter', _(u'Winterraum')),
('hut', _(u'Alpenvereinshütte')),
('hut_dorm', _(u'Alpenvereinshütte (Lager)')),
('hut_room', _(u'Alpenvereinshütte (Zimmer)')),
('hotel', _(u'Hotel/Pension/Hostel')),
('OTHER', _(u'Andere Unterkunft (zusätzliches Feld)')),
])
@@ -111,9 +115,9 @@ TERRAIN_CHOICES = ChoiceSet([
TRANSPORT_CHOICES = ChoiceSet([
('NONE', _(u'Keine Angabe')),
('train', _(u'Bahn')),
('bus', _(u'Bus')),
('car', _(u'Fahrgemeinschaften')),
('public', _(u'Bahn / Bus')),
('coach', _(u'Reisebus')),
('car', _(u'Fahrgemeinschaften / Stadtmobil')),
('self', _(u'Eigenverantwortlich')),
('OTHER', _(u'Anderes Verkehrsmittel (zusätzliches Feld)')),
])