Running django-1.0 out of svn trunk, just updated today (9084). I've defined my UserProfile according to the latest documentation:
class UserProfile(models.Model): user = models.ForeignKey(User, unique=True) dep = models.CharField("Department", max_length=20, blank=True) phone = models.CharField(max_length=20, blank=True) notes = models.TextField(blank=True) I've added the following to my settings.py: AUTH_PROFILE_MODULE = 'app.userprofile' But I still don't get any extra fields in the admin. What am I missing? Any input appreciated /Lars --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---