Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
d701fbe
remove in file style & compile scss
daaimah123 Dec 13, 2025
87b510c
move form.html to app directory
daaimah123 Dec 13, 2025
e5f7b1c
update eligibility to include trans identities
daaimah123 Dec 13, 2025
9ab7164
remove radio input block styling
daaimah123 Dec 13, 2025
63b89d7
compile scss
daaimah123 Dec 13, 2025
d3c4653
remove margin 75% & compile scss
daaimah123 Dec 13, 2025
71a5e1a
less form padding on small screen & compile scss
daaimah123 Dec 13, 2025
092165f
wrap step 1 in form tag with application-form class
daaimah123 Dec 13, 2025
e70b6d9
override small padding, inline learn-more, compile sass
daaimah123 Dec 13, 2025
142c372
override small padding & compile sass
daaimah123 Dec 13, 2025
526e9b4
remove important property & compile sass
daaimah123 Dec 13, 2025
c315234
fix scss format & compile sass
daaimah123 Dec 14, 2025
a8fdb33
fix pie chart error
adrian-guzman-301 Jan 30, 2026
f03a2e3
remove pseudo-code
adrian-guzman-301 Jan 30, 2026
d96445d
fix: revert last commit. Pushing changes to teams.html, software-engi…
vazquezea96 Feb 10, 2026
a3c8010
privacy page wrap and icon styling
daaimah123 Feb 20, 2026
b442b3d
Merge pull request #881 from vazquezea96/remove-old-board-member-v2
daaimah123 Feb 24, 2026
c80b553
Merge pull request #886 from Techtonica/privacy-page-style
monikkaelyse Feb 25, 2026
d72a58f
Merge pull request #879 from Techtonica/fix-pie-chart-error
daaimah123 Mar 3, 2026
981a95e
create redirect from partner slug to sponsor
daaimah123 Mar 20, 2026
265303b
update the comment for careers redirect
daaimah123 Mar 20, 2026
1a20f91
Merge pull request #889 from Techtonica/partner-reroute
daaimah123 Mar 23, 2026
4cc3644
add 2025 impact report to faq page
daaimah123 Mar 25, 2026
1c7bfdb
Merge pull request #896 from Techtonica/2025-impact-report
daaimah123 Mar 25, 2026
6bc0935
update education guideline on swe page
daaimah123 Mar 25, 2026
2f6d92d
SWE Language Updates
daaimah123 Apr 1, 2026
b170bef
Merge pull request #897 from Techtonica/education-guideline
daaimah123 Apr 1, 2026
bf4e78e
Merge branch 'develop' into pre-req-swe-page
daaimah123 Apr 1, 2026
612a433
update dates and specific cohort & remove six month references
daaimah123 Apr 1, 2026
8f03df5
Merge pull request #900 from Techtonica/pre-req-swe-page
daaimah123 Apr 2, 2026
553090b
Merge branch 'mvp' into mvp-issue-567
itspaigenli Apr 11, 2026
b47b965
Fix invalid SCSS syntax in forms.css color declarations
itspaigenli Apr 11, 2026
dd641fd
Remove invalid Sass usage [nesting + other syntax discrepencies] from…
itspaigenli Apr 11, 2026
3f8dd5a
Adjusting form spacing
itspaigenli Apr 12, 2026
b7efa44
Reseting some of the form element margins
itspaigenli Apr 12, 2026
4c40c80
Adjusted label margins
itspaigenli Apr 12, 2026
64b2f4e
Remove outer border and shrink padding
itspaigenli Apr 12, 2026
13c0dff
Adjusted continue button
itspaigenli Apr 12, 2026
45aa23d
Add div class
itspaigenli Apr 12, 2026
788a34f
Merge branch 'develop' into paige-pr-869-continuation
itspaigenli Apr 12, 2026
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
10 changes: 9 additions & 1 deletion main_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def render_team_page():
@app.route("/careers/")
def render_careers_page():
"""
Renders the careers page from jinja2 template
Redirects careers route to openings page
"""
return redirect(url_for("render_openings_page"))

Expand All @@ -76,6 +76,14 @@ def render_conduct_page():
return render_template("conduct.html")


@app.route("/partner/")
def redirect_partner_to_sponsor_page():
"""
Redirects partner route to sponsor page
"""
return redirect(url_for("render_sponsor_page"))


@app.route("/privacy/")
def render_privacy_page():
"""
Expand Down
Loading