[mezzanine-users] Re: Multiple Blogs

2015-03-02 Thread Eduardo Rivas
Hello Dennis. I actually needed to do this for a project a few years ago. As far a I know, Mezzanine doesn't support multiple blogs out of the box. What I did was create a Blog model, which simply had a slug and title, and then add it as FK to the standard BlogPost and BlogCategory models.

[mezzanine-users] How to make some user fields on registration form optional

2015-03-02 Thread River Satya
Hi all! I have a client who wants to make the first and last name fields on the registration form optional. I've dug into the Mezzanine (3.1.9) codebase, and it appears that all fields on the Django User model object are made mandatory in accounts.forms.ProfileForm (accounts/forms: line

[mezzanine-users] Re: How to make some user fields on registration form optional

2015-03-02 Thread wongo888
You might just want to roll your own https://docs.djangoproject.com/en/1.6/topics/auth/customizing/#substituting-a-custom-user-model K On Monday, March 2, 2015 at 8:54:49 PM UTC-8, River Satya wrote: Hi all! I have a client who wants to make the first and last name fields on the