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: 2 additions & 2 deletions hackathon_site/dashboard/frontend/src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export const hackathonName = "MakeUofT 2026";
export const adminGroup = "Hardware Site Admins";
export const minTeamSize = 2;
export const maxTeamSize = 4;
export const hardwareSignOutStartDate = new Date(2026, 0, 16, 6, 0);
export const hardwareSignOutEndDate = new Date(2026, 1, 15, 11, 0);
export const hardwareSignOutStartDate = new Date(2026, 1, 8, 23, 59);
export const hardwareSignOutEndDate = new Date(2026, 1, 15, 9, 0);
export const hssTestUserGroup = "HSS Test Users";
export const serverUrl = "https://makeuoft.ca";
export const minProjectDescriptionLength = 60;
Expand Down
8 changes: 4 additions & 4 deletions hackathon_site/hackathon_site/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,15 +322,15 @@
REGISTRATION_CLOSE_DATE = datetime(2026, 1, 28, 23, 59, 0, tzinfo=TZ_INFO)
EVENT_START_DATE = datetime(2026, 2, 14, 8, 0, 0, tzinfo=TZ_INFO)
EVENT_END_DATE = datetime(2026, 2, 15, 17, 0, 0, tzinfo=TZ_INFO)
HARDWARE_SIGN_OUT_START_DATE = datetime(2026, 1, 14, 6, 0, tzinfo=TZ_INFO)
HARDWARE_SIGN_OUT_END_DATE = datetime(2026, 2, 15, 11, 0, tzinfo=TZ_INFO)
HARDWARE_SIGN_OUT_START_DATE = datetime(2026, 2, 8, 23, 59, 0, tzinfo=TZ_INFO)
HARDWARE_SIGN_OUT_END_DATE = datetime(2026, 2, 15, 9, 0, tzinfo=TZ_INFO)

# Registration user requirements
MINIMUM_AGE = 17

# Registration settings
ACCOUNT_ACTIVATION_DAYS = 7
RSVP_DAYS = 1
RSVP_DAYS = 4

# Team requirements
MIN_MEMBERS = 2
Expand All @@ -350,7 +350,7 @@

# Note this is in the form (chat_room_name, chat_room_link)
# Chat room name is such as the following: Slack, Discord
CHAT_ROOM = ("Discord", "https://discord.gg/rRCpjtQUaZ")
CHAT_ROOM = ("Discord", "https://discord.gg/3K9YV7Tc")

# Enable/Disable certain Features
TEAMS = True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,16 @@
>{{ chat_room_name }}</a
>. Stay tuned for more updates regarding
detailed event logistics, and we hope to see
you soon! <br /><br />
you soon! Please note that applications are <b>reviewed individually</b>, and this is the <b>first round of acceptances</b>. Additional offers will be sent out in a second round.
<br /><br />
As well, our
<a href="https://hardware.makeuoft.ca"
>Hardware Signout Site</a
>
will be open for viewing starting February
10th at 11:59 PM. Please remember to
7th at 11:59 PM. Please remember to
recreate your team on the site once it's
open for viewing. Starting February 12th at
open for viewing. Starting February 8th at
11:59 PM, you will be able to place orders
and borrow hardware items from our
inventory. Get ready to explore our
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Congratulations, you’ve been accepted to {{ hackathon_name }}!
ACTION REQUIRED: Congratulations, you’ve been accepted to {{ hackathon_name }}!
Loading