Am Sat, 05 May 2007 10:22:14 -0700
schrieb Heit <[EMAIL PROTECTED]>:

> TYPE_CHOICES = (('user', 'USER'),('serve',  'SERVE'))
> class Person(models.Model):
>     ...
>     type = models.CharField(maxlength=30, unique=True,choices=
>            TYPE_CHOICES, default='user')
>     ...

So you can have at most 2 records in Person table (because of
unique=True). One with type="user" and one with type="serve". Is this
*really* what you want?

> I changed some code in django.contrinb.admin.views.main and now it
> works fine for me.

Do not - I repeat: DO NOT - change code in contrib.admin.views. It is
almost NEVER a good idea... :)

Martin

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