Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ def team_jin_allison_saad():
def team_brian_jia_honghao():
return render_template('teams/brian_jia_honghao.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')
Expand Down
2 changes: 1 addition & 1 deletion templates/students_2024.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ <h1> Summer 2024 Cohort </h1>
<div> School: CSULB </div>
<p> What I'm looking forward to during the CodeDay labs internship is getting to contribute
to an amazing project and meet some great people.</p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="/team_1">Team 1</a>
</div>

<div class="student-container">
Expand Down
7 changes: 7 additions & 0 deletions templates/teams/team_1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<html>
<head>
</head>
<body>
We have all love coding
</body>
</html>