Skip to content

Commit

Permalink
add visibility for specific dietary requirement and modified event 2 …
Browse files Browse the repository at this point in the history
…interval
  • Loading branch information
Mustaballer committed Oct 25, 2024
1 parent a05581a commit d4789a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions hackathon_site/event/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,12 @@ def form_valid(self, form):
+ application.tshirt_size
+ " 🍉 Dietary Restrictions: "
+ application.dietary_restrictions
+ (
" 🥗 Specific Dietary Requirement: "
+ application.free_response_dietary_restrictions
if application.free_response_dietary_restrictions
else ""
)
)

messages.success(self.request, return_string)
Expand Down
4 changes: 2 additions & 2 deletions hackathon_site/hackathon_site/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@
{
"name": "lunch2",
"description": "Lunch Day 2",
"time": datetime(2024, 10, 26, 11, 0, 0, tzinfo=TZ_INFO), # Oct 26th @ 11pm
"time": datetime(2024, 10, 26, 11, 45, 0, tzinfo=TZ_INFO), # Oct 26th @ 11:45pm
},
]

Expand Down Expand Up @@ -385,4 +385,4 @@
RSVP = True

# HSS Testing
TEST_USER_GROUP = "HSS Test Users"
TEST_USER_GROUP = "HSS Test Users"

0 comments on commit d4789a9

Please sign in to comment.