Fix volunteer RSVP language in non-RSVP event#1667
Fix volunteer RSVP language in non-RSVP event#1667Meatchema wants to merge 14 commits intodevelopmentfrom
Conversation
… not rsvp and have attended and or have not attended
bakobagassas
left a comment
There was a problem hiding this comment.
For non-rsvp events, when we manually add a volunteer using the scanner, they show as invited however, when we manually add them using their names they show as RSVP and not invited. It should be consistent when the event is non-rsvp whether we use the name search or scanner, we should have always have Invited instead of RSVP
… counted for two sections
… manage volunteer table can see ALL the volunteers added to the event
|
|
||
| {% macro createCheckbox(checkboxName) %} | ||
| {% set labelText = "RSVP" if checkboxName == 'rsvp' else 'Waitlist' if checkboxName == 'waitlist' else 'Attended' %} | ||
| {% set labelText = "RSVP" if checkboxName == 'rsvp' else 'Waitlist' if checkboxName == 'waitlist' else 'Attended' if checkboxName == 'attended' else 'Invited' %} |
There was a problem hiding this comment.
i think using a dictionary mapping here might be cleaner i.e
{ % set labels = {
'rsvp' : "RSVP" } %}
{ % set labelText = labels.get (checkboxName, "invited") %} something like this might make the code more readable.
There was a problem hiding this comment.
I have now fix change this line to a dictionary and changed instances of waitlist to "waitlisted".
… finished updating waitlisted references for user in the checkbox
|
In my opinion, it makes more sense as an admin to be able to invite certain students to a non rsvp program and for it to display as invited regardless of the entry method, be it through "scan entry" or through "add volunteers." |
Good Afternoon, I was informed by Brian that anytime that a user is entered via Barcode the result should always be attended since the barcode scanner is only used at the start of an event. It is never used significantly before the event actually happens, so it does not qualify for invited or RSVP status. I will however try to ask Brian to check in on this to make sure this is the final product that was aimed for. |
No need, I just wanted to make sure that there is a reason behind the logic |


Issue Description
Fixes #1663
For events that are not expecting RSVP, we need to change our language to 'Invited' students, if people are added ahead of time. Wherever we display those RSVP students, both before and after the event, should reflect this change.
Changes
New Changes (2/9/26)
Testing
Under "Create Events":
Note: To add the student to the non-RSVP event:
- retrieve the student's B# from their profile
- Switch back to Brian's Admin Profile
- Go to event's list and click on the non-Rsvp event
- Click on Manage Volunteers, click Scanner Entry, then past the B#
- This should result in the 'Invited' status in a non-RSVP event, and 'RSVP' status on a RSVP Event.
Note (UPDATED-2/9/26):
RSVP- A person who registered for an RSVP event online
Attended- An RSVP individual entered manually through Barcode to an RSVP event
Invited- An individual manually added to a non-RSVP event (using name search)
Waitlisted- A person who registered for the event after the RSVP limit was reached
The creation of these two previous events is to make sure that' RSVP' shows up under the RSVP event and 'Invited' shows up for the non-RSVP event. The ATTENDED status will only show if entered through the barcode. This is because the barcode and B# scanner is only used during and at the start of school events meaning the student is already there. Now you will create the third.