forked from mladenpetr/VolonterskiSati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utilities.py
41 lines (36 loc) · 867 Bytes
/
Utilities.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from constants import *
DATE_FORMAT = "%Y-%m-%d"
sections = {
'svi': Sekcije.SVI,
'bike': Sekcije.BIKE,
'disco': Sekcije.DISCO,
'dramska': Sekcije.DRAMSKA,
'foto': Sekcije.FOTO,
'glazbena': Sekcije.GLAZBENA,
'pijandure': Sekcije.PLANINARSKA,
'comp': Sekcije.RACUNARSKA,
'tech': Sekcije.TEHNICKA,
'video': Sekcije.VIDEO
}
shirt_sizes = {
'mxxl': ShirtSizes.MXXL,
'mxl': ShirtSizes.MXL,
'ml': ShirtSizes.ML,
'mm': ShirtSizes.MM,
'ms': ShirtSizes.MS,
'zxl': ShirtSizes.ZXL,
'zl': ShirtSizes.ZL,
'zm': ShirtSizes.ZM,
'zs': ShirtSizes.ZS,
'zxs': ShirtSizes.ZXS
}
teams = {
'pr': Timovi.PR,
'dizajn': Timovi.DIZAJN
}
sections_and_teams = {**sections, **teams}
card_colors = {
Iskaznice.CRVENA: "Crvena",
Iskaznice.NARANCASTA: "Narančasta",
Iskaznice.PLAVA: "Plava"
}