Conversation
… not rsvp and have attended and or have not attended
… counted for two sections
… manage volunteer table can see ALL the volunteers added to the event
… finished updating waitlisted references for user in the checkbox
Arohasina
left a comment
There was a problem hiding this comment.
-tested the changes, all work
-ran ./tests/run_tests.sh everything passed
All good on my side. If the second reviewer approves i believe this PR can be merged
There was a problem hiding this comment.
Hey! So for this issue I think there was a confusion. I recreated the testing in development and it seems to be working fine.
From my understanding, the issue should mainly be about the responsiveness of the pages that come after the first page on the graduation management page - not really the logic of the alumni thingy. Here is the description from Trello "The Graduation Management interface only works on the first page of data. Subsequent pages and searched students do not work.".
Also, there are a lot of commits in this PR that are not related to the graduation management page.
…or the page. (So it doesn't switch pages after every graduate selection)
| waitlistUser = list(set([obj for obj in eventRsvpData if obj.rsvpWaitlist])) | ||
| rsvpUser = list(set([obj for obj in eventRsvpData if not obj.rsvpWaitlist ])) | ||
|
|
||
| attendedUser = list(set([obj for obj in eventParticipantData if not obj.rsvpWaitlist])) |
There was a problem hiding this comment.
We should not be changing RSVP in this PR
There was a problem hiding this comment.
Oh, Im starting to notice. I think I may have built this branch off of my other PR. :( I will try to see if I can remove these code pieces safely without messing up this PR. (I will leave comments again once this is complete.)
|
|
||
| {% macro createCheckbox(checkboxName) %} | ||
| {% set labelText = "RSVP" if checkboxName == 'rsvp' else 'Waitlist' if checkboxName == 'waitlist' else 'Attended' %} | ||
| {%- set labelMap = { |
There was a problem hiding this comment.
We should not change this file, as it does not have to do with graduation managment
There was a problem hiding this comment.
This was the result of a merge issue. The "new" code was actually the previous code before the code in red which was new code that I had accidentally accepted due to the merge conflict.
|
|
||
| # put the rest of the users that are not on the waitlist into the volunteer data | ||
| eventVolunteerData = [volunteer for volunteer in eventNonAttendedData if volunteer not in eventWaitlistData] | ||
| # put all participants and non-waitlisted RSVPs into the volunteer data |
There was a problem hiding this comment.
We should not change this file either, as it does not have to do with graduation management.
Issue Description
-Miss identified issue (solved) : The problem is that when the graduation check is clicked it says that the status has been confirmed and it works to create the graduated individual. But, if you uncheck their graduation status, they are no longer searchable under the ‘Senior' Status.
-Re-Identification of issue (solved): The actual problem is that from page two and onward if I click graduated for the user, the user will not disappear as they are supposed too. Only page one works.
Fixes #1679
Changes (2/24/26)
Changes
Testing (New Problem Identified - 2/24/26)
-set in database/reset_database.sh from-backup
Testing (Previous Problem Identified)
-set in database/reset_database.sh from-backup