forked from CTI-CodeDay/GitWorkflowIntro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.py
209 lines (156 loc) · 5.34 KB
/
app.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template('index.html')
@app.route("/2022")
def cohort_2022():
return render_template('students_2022.html')
@app.route("/2023")
def cohort_2023():
return render_template('students_2023.html')
@app.route("/arm_phil_dyl")
def team_arm_phil_dyl():
return render_template('teams/arm_phil_dyl.html')
@app.route("/2024")
def cohort_2024():
return render_template('students_2024.html')
@app.route("/2025")
def cohort_2025():
return render_template('students_2025.html')
@app.route("/shane_rashida_anthony")
def team_shane_rashida_anthony():
return render_template('teams/shane_rashida_anthony.html')
@app.route("/nat_uts")
def team_nat_uts():
return render_template('teams/nat_uts.html')
@app.route("/aryan_ethan_richie")
def team_aryan_ethan_richie():
return render_template('teams/aryan_ethan_richie.html')
@app.route("/sun_edm")
def team_sun_edm():
return render_template('teams/sun_edm.html')
@app.route('/jaime_edgarh')
def team_jaime_edgarh():
return render_template('teams/jaime_edgarh.html')
@app.route("/nathan_brian")
def team_nathan_brian():
return render_template('teams/nathan_brian.html')
@app.route("/boba")
def team_boba():
return render_template('teams/boba.html')
@app.route("/ian_brenden_elias")
def team_ian_brenden_elias():
return render_template('teams/ian_brenden_elias.html')
@app.route("/edg_and_edg")
def team_edg_and_edg():
return render_template('teams/edg_and_edg.html')
@app.route("/nt")
def team_nt():
return render_template('teams/nt.html')
@app.route("/liu_tuan_dominic")
def team_liu_tuan_dominic():
return render_template('teams/liu_tuan_dominic.html')
@app.route("/teamWork")
def team_june22():
return render_template('teams/teamWork.html')
@app.route("/trav_con")
def team_trav_con():
return render_template('teams/trav_con.html')
@app.route("/team_michael_rahul_magiber")
def team_michael_rahul_magiber():
return render_template('teams/team_michael_rahul_magiber.html')
@app.route("/sleeper")
def team_sleeper():
return render_template('teams/sleeper.html')
@app.route("/Team 10")
def team10():
return render_template('teams/team10.html')
@app.route("/team_kn")
def team_kn():
return render_template('teams/team_kn.html')
@app.route("/team_Di_Si_Se")
def team_Di_Si_Se():
return render_template('teams/team_Di_Si_Se.html')
@app.route("/shengzhe")
def team_shengzhe():
return render_template('teams/shengzhe.html')
@app.route("/james_david")
def team_james_david():
return render_template('teams/james_david.html')
@app.route("/dong_zach_dar")
def team_dong_zach_dar():
return render_template('teams/dong_zach_dar.html')
@app.route("/alison_rob_shawn")
def team_alison_rob_shawn():
return render_template('teams/alison_rob_shawn.html')
@app.route("/nick_val")
def team_nick_val():
return render_template('teams/nick_val.html')
@app.route("/luke_noah_maya")
def team_luke_noah_maya():
return render_template('teams/luke_noah_maya.html')
@app.route("/chey_serg_ted")
def team_chey_serg_ted():
return render_template('teams/chey_serg_ted.html')
@app.route("/jin_allison_saad")
def team_jin_allison_saad():
return render_template('teams/team_jin_allison_saad.html')
@app.route("/brian_jia_honghao")
def team_brian_jia_honghao():
return render_template('teams/brian_jia_honghao.html')
@app.route("/team_cesar_daniel_karti")
def team_cesar_daniel_karti():
return render_template('teams/team_cesar_daniel_karti.html')
@app.route("/team_1")
def team_1():
return render_template('teams/team_1.html')
@app.route("/team18")
def team18():
return render_template('teams/team18.html')
@app.route("/evgin_joshiro_michael")
def team_evgin_joshiro_michael():
return render_template('teams/evgin_joshiro_michael.html')
@app.route("/julian_luis_pranathi")
def team_jlp():
return render_template('teams/julian_luis_pranathi.html')
@app.route("/xiaotian_adrian")
def team_xiaotian_adrian():
return render_template('teams/xiaotian_adrian.html')
@app.route("/team_sydney_ryan_peiwan")
def team_sydney_ryan_peiwan():
return render_template('teams/team_pei-wan.html')
@app.route("/zhao_jiang_lauper")
def team_zhao_jiang_lauper():
return render_template('teams/teamzhao_jiang_lauper.html')
@app.route("/s_o_j")
def team_s_o_j():
return render_template('teams/s_o_j.html')
@app.route("/JIE")
def team_JIE():
return render_template('teams/JIE.html')
@app.route("/xuan_jackson")
def team_xuan_jackson():
return render_template('teams/xuan_jackson.html')
@app.route("/colinsebasaliyah")
def colinsebasaliyah():
return render_template('teams/colinsebasaliyah.html')
@app.route("/team_msj")
def team_mjs():
return render_template('teams/msj.html')
@app.route("/matthew_dale_suchith")
def matthew_dale_suchith():
return render_template('teams/matthew_dale_suchith.html')
@app.route("/tri_sta_jag")
def team_tri_sta_jag():
return render_template('teams/tri_sta_jag.html')
@app.route("/mai_andy_mahdi")
def team_mai_andy_mahdi():
return render_template('teams/mai_andy_mahdi.html')
@app.route("/nic_ridhima_anvi")
def nic_ridhima_anvi():
return render_template('teams/nic_ridhima_anvi.html')
@app.route("/eddie_syn_ved")
def team_E_S_V():
return render_template('teams/eddie_syn_ved.html')