In a Django project, I have a custom user model that adds one extra field:
class User(AbstractUser):
company = models.ForeignKey(Company, null=True, blank=True)
This model is defined in my app, say MyApp.models.
How can I get the new User model to show up under "Authentication and Authorization" as the original django.contrib.auth model?
