Fixed wrong country code for A(U)T.

This commit is contained in:
2018-01-30 23:22:14 +01:00
parent e1810b64a0
commit 97ad516c09
2 changed files with 4 additions and 4 deletions

View File

@@ -727,15 +727,15 @@ class ChargesForm(EventCreateForm):
charge_key = 'C'
elif terrain != 'alpine':
charge_key = 'D'
elif mode == 'training' and country in ('DE', 'AUT'):
elif mode == 'training' and country in ('DE', 'AT'):
charge_key = 'G'
elif mode == 'training':
charge_key = 'H'
elif sport == 'K' and country in ('DE', 'AUT'):
elif sport == 'K' and country in ('DE', 'AT'):
charge_key = 'E'
elif sport == 'K':
charge_key = 'F'
elif country in ('DE', 'AUT'):
elif country in ('DE', 'AT'):
charge_key = 'I'
else:
charge_key = 'J'