Ticket #11682: admin-ui-11682.diff

File admin-ui-11682.diff, 597 bytes (added by Fred Bartle, 15 years ago)

Check if index is not None

  • django/src/django-admin-ui/django/forms/models.py

     
    676676                pk_value = form.instance.pk
    677677            else:
    678678                try:
    679                     if index:
     679                    if index is not None:
    680680                        pk_value = self.get_queryset()[index].pk
    681681                    else:
    682682                        pk_value = None
Back to Top