Hi,

I get a keyerror in the admin interface if my primary key is also a
foreign key and I try to open an object.


KeyError at /admin/swi/switchport/TS4-01A-44/

'anschlnr'
Request Method:     GET
Request URL:     http://localhost:1200/admin/swi/switchport/TS4-01A-44/
Exception Type:     KeyError
Exception Value:     'anschlnr'
Exception Location:
/usr/lib/python2.5/site-packages/django/contrib/admin/views/main.py in
original_value, line 136

   
14     {% if bound_field.field.primary_key %}
15     {{ bound_field.original_value }} <-- this should be the problem
16     {% endif %}


This is the model object:

class switchport(models.Model):
   anschlnr                     = models.ForeignKey(anschluss,
primary_key=True, db_column='anschlnr')
   swnr                           = models.ForeignKey(switch,
db_column='swnr')
   portnr                         = models.IntegerField()
   switchport_status        = models.CharField(maxlength=7,
choices=SWITCHPORT_STATUS)
   anschluss_status         = models.CharField(maxlength=8,
choices=ANSCHLUSS_STATUS)
   iface                            = models.CharField(maxlength=20)
   dhcp_helper              = models.IPAddressField()
   class Meta:
     verbose_name_plural = 'switchport'
     db_table = 'switchport'
     unique_together = (('swnr', 'portnr'),)
   class Admin:
     list_display = ('anschlnr', 'swnr', 'portnr', 'dhcp_helper',
'switchport_status', 'anschluss_status')
     search_fields = ['swnr__swnr', 'anschlnr__anschlnr', 'portnr',
'switchport_status', 'anschluss_status']

Is there anything wrong or isn't it possible that the primary key is a
foreign key, too ?

Stephan



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