How would you go about modifying the fields in the Django User Model to be required?
I'd like a User to require that a name and email address be entered at the time of creation, but I'm not sure how to go about doing this. Furthermore, I also want to be able to add fields to the User model. Looking around, I'm not sure what the best way to do this would be. There seem to be different schools about actually extending the User model or doing it through a one-to-one relationship.