It looks to me like you could use some sort of user profile. Mezzanine 
(Django, really) supports associating a profile model to each User object. 
In this profile model you can define as many fields of any kind as you like 
(as you'd do with any model). Mezzanine's docs contain a useful overview 
and example. http://mezzanine.jupo.org/docs/user-accounts.html

In the linked page, you can see the model "MyProfile" contains the fields 
we want to associate with each User. Here you can define your own custom 
fields, methods, managers, etc. Once each user registers and fills up 
his/her profile, they appear in the Admin under the "Users" section. There 
you'll see the regular User fields (email, date joined, permissions, etc) 
and at the bottom the fields you've defined in your profile.

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to