Hi Niels. Quick question: have you given User Profiles a shot? You need to do two things: tell Mezzanine which model you want use as user profile with settings.AUTH_PROFILE_MODULE = "path.to.your.model" and secondly, enable user profiles with settings.ACCOUNTS_PROFILE_VIEWS_ENABLED = True. This will get all fields from your user profile plus the fields from the normal User object and give your users both a view-only public profile (/users/username) and an editable form to update their info (/accounts/update/). This page from Mezzanine's docs describes this approach http://mezzanine.jupo.org/docs/user-accounts.html.
If you'd rather continue with your current approach, you should make CustomerPage subclass Displayable and create your own views and url patters to fetch users by username or any key you like. This qualifies as "Non-page Content", more here: http://mezzanine.jupo.org/docs/content-architecture.html#non-page-content. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
