I am trying to implement the concept of "Plans" (free, pro, enterprise, etc.) when a user signs up for my site.
I am beginning Python
& Django
. I've gotten django-userena
installed and working. Now, I am trying to extend the behavior to allow a user to select a "Plan" when signing up for the site.
I believe the plan would be stored in a subclass of UserenaBaseProfile
, but not sure... maybe plan choice should not be part of the profile.
What is the best way to implement the concept of "plans" in a Django
app using Userena
(or not using Userena
!).