i´m having the following model which gives me an error when trying to  
save something:

class Filmstarts(meta.Model):
     id = meta.AutoField('ID', primary_key=True)
     film = meta.ForeignKey(Film, raw_id_admin=True)
     class META:
         order_with_respect_to = "film"
         admin = meta.Admin(
             list_display = ('film',),
         )

any idea what´s wrong with this?

thanks,
patrick
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to