What\'s the best way to extend the User model (bundled with Django\'s authentication app) with custom fields? I would also possibly like to use the email as the username (fo
Simple and effective approach is models.py
from django.contrib.auth.models import User class CustomUser(User): profile_pic = models.ImageField(upload_to='...') other_field = models.CharField()