-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
66 lines (60 loc) · 1.5 KB
/
settings.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#colors
BLACK = "#202020"
WHITE = "#EEEEEE"
CLOSE_RED = "#8a0606"
#Text
FONT = "Helvetica"
FONT_STATUS = "Calibri"
TITLE_FONT_SIZE = 20
NORMAL_FONT_SIZE = 15
SELECT_ALL_BUTTON_FONT_SIZE = 13
#Images
IMAGE = {
"load":{"image_path":"images/load.gif"}
}
#Lists
IT_COURSES = [
"Introduction to Computer Science",
"Data Structures and Algorithms",
"Programming Fundamentals",
"Object-Oriented Programming",
"Database Management Systems",
"Computer Networks",
"Operating Systems",
"Software Engineering",
"Web Development",
"Cybersecurity",
"Information Systems",
"Artificial Intelligence",
"Human-Computer Interaction",
"Mobile Application Development",
"Cloud Computing",
"Big Data Analytics",
"Computer Architecture",
"IT Project Management",
"Digital Signal Processing",
"Computer Graphics"
]
PROFESSOR_NAMES = [
"Dr. John Smith",
"Prof. Emily Johnson",
"Dr. Michael Williams",
"Prof. Sarah Brown",
"Dr. David Jones",
"Prof. Jessica Davis",
"Dr. Robert Wilson",
"Prof. Jennifer Martinez",
"Dr. Christopher Taylor",
"Prof. Amanda Garcia",
"Dr. Daniel Rodriguez",
"Prof. Lauren Moore",
"Dr. Matthew Thompson",
"Prof. Ashley Thomas",
"Dr. Samantha Lee",
"Prof. Ryan White",
"Dr. Elizabeth Anderson",
"Prof. Kevin Clark",
"Dr. Michelle Hall",
"Prof. Brian Martinez"
]
COURSES_TYPES = ["C","TD","TP","CI"]