Please some one explain to me why I can't do this, or what
__metaclass__ hack I have to pull to get it to work? I searched google
and the list and saw a lot of old (7/2006) pages and discussions about
this, but nothing current.

from django.db import models
from django.contrib.auth.models import User and DjangoUser

class MyUser(DjangoUser):
  new_property = models.IntegerField()

I saw this at django snippets, http://www.djangosnippets.org/snippets/317/,
but it is less straight forward than the above, and didn't work for me
anyway.

I also tried something like this, but it didn't work either.

class MyUser(DjangoUser):
  def __new__(cls, name, bases, attrs):
    new_class = super(MyUser, cls).__new__(cls, name, bases, attrs)
    new_class.add_to_class('new_propery', models.IntegerField())
    return new_class

I am using django 0.96, and am aware that I could just use profiles,
but that doesn't work as well in this particular application. If any
one has done this or knows what I'm doing wrong, I would be forever
greatful--ok maybe not forever, but greatful at least till I'm thru
with this project!

Thanks


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to