You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An advisor registering for the next BMUN session shouldn't have to input all this information again. Most of it will remain the same. Let's add a one-click reactivation feature that allows advisors to re-register with the conference after updating their profile information.
This will require some logic changes, because currently we assume that any existing advisor account is registered for the conference. The is_active property of Django User models will come in handy here.
We'll also have to create a Registration many-to-many association between schools (or advisors, or whatever) and Conferences. This way, advisors can register for various conferences.
The text was updated successfully, but these errors were encountered:
We'll do a simplified version of this for 62, where an advisor can indicate that they are from a returning school, and they won't have to make an account again. Unfortunately, they may still have to edit their school information unless we find some way to display that to them on re-registration.
An advisor registering for the next BMUN session shouldn't have to input all this information again. Most of it will remain the same. Let's add a one-click reactivation feature that allows advisors to re-register with the conference after updating their profile information.
This will require some logic changes, because currently we assume that any existing advisor account is registered for the conference. The
is_active
property of Django User models will come in handy here.We'll also have to create a
Registration
many-to-many association between schools (or advisors, or whatever) and Conferences. This way, advisors can register for various conferences.The text was updated successfully, but these errors were encountered: