Skip to content
Snippets Groups Projects
Commit 52d051eb authored by Carlos Vega's avatar Carlos Vega
Browse files

added constant per type of availability

parent 03b1b1c7
No related branches found
No related tags found
1 merge request!171Feature/daily availability
......@@ -78,9 +78,12 @@ WEEKDAY_CHOICES = (
(SUNDAY_AS_DAY_OF_WEEK, 'SUNDAY'),
)
AVAILABILITY_HOLIDAY = 'H'
AVAILABILITY_EXTRA = 'X'
AVAILABILITY_CHOICES = (
('H', 'Holiday'),
('X', 'Extra Availability'),
(AVAILABILITY_HOLIDAY, 'Holiday'),
(AVAILABILITY_EXTRA, 'Extra Availability'),
)
REDCAP_TOKEN_CONFIGURATION_TYPE = "REDCAP_TOKEN_CONFIGURATION_TYPE"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment