2022-11-12 16:18:07 +01:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class ModeGroups(str, Enum):
|
2023-01-14 17:38:03 +01:00
|
|
|
STATIONARY = "s"
|
|
|
|
NON_STATIONARY = "n"
|
|
|
|
ENGLISH_SPEAKING_STATIONARY = "e"
|
|
|
|
|
|
|
|
|
|
|
|
class EnrollmentsMode(str, Enum):
|
|
|
|
"""
|
|
|
|
What means specific values?:
|
|
|
|
INIT - project supervisor set your availability time for this examination
|
|
|
|
schedule, students cannot use examination schedule
|
|
|
|
OPEN - students can assign to term of defence, project supervisor cannot
|
|
|
|
use examination schedule
|
|
|
|
CLOSE - students and project supervisor cannot use examination schedule
|
|
|
|
"""
|
|
|
|
|
|
|
|
INIT = "i"
|
|
|
|
OPEN = "o"
|
|
|
|
CLOSE = "c"
|