yes, but when i do that it doesn't show up anywhere in the admin. i'm not getting any errors and running it in development mode right now.
class UserProfile(models.Model): url = models.URLField() home_address = models.TextField() phone_numer = models.PhoneNumberField() user = models.ForeignKey(User, unique=True) then in settings: AUTH_PROFILE_MODULE = 'mccms.UserProfile' On Jul 7, 10:52 am, brydon <[EMAIL PROTECTED]> wrote: > Have you already read about extending the user system through creating > your own AUTH_PROFILE_MODULE? > > http://www.djangoproject.com/documentation/authentication/#storing-ad... > > brydon > > On Jul 7, 10:27 am, [EMAIL PROTECTED] wrote: > > > Would it be proper to use the django admin/user system and just extend > > it to have staff bios, etc? > > > We're going to have it setup that our faculty will have admin access, > > with limited permissions to login and upload some class lectures (ppt > > files), edit their class info, etc. Since they'll already be in the > > database for that, what would be the best way to expand that info to > > include some other biographical information that'll be displayed > > publicly on the site (bio, certifications, awards, education, etc). > > > I was thinking of creating a new model with the "extra" needed info > > and linking it to user via foreign key, would that be the best way to > > do it? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---