Created
January 7, 2016 16:52
-
-
Save barrachri/9045e79a0fb562601ff2 to your computer and use it in GitHub Desktop.
code for ep2016
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TALK_TYPE = ( | |
('t_30', 'Talk (30 mins)'), | |
('t_45', 'Talk (45 mins)'), | |
('t_60', 'Talk (60 mins)'), | |
('i_60', 'Interactive (60 mins)'), | |
('r_180', 'Training (180 mins)'), | |
('p_180', 'Poster session (180 mins)'), | |
('p_60', 'Panel (60 mins)'), | |
('p_90', 'Panel (90 mins)'), | |
('h_180', 'Help desk (180 mins)'), | |
) | |
DURATION = { | |
't_30': 30, | |
't_45': 45, | |
't_60': 60, | |
'i_60': 60, | |
'r_180': 180, | |
'p_180': 180, | |
'p_60': 60, | |
'p_90': 90, | |
'h_180': 180, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment