Changes between Initial Version and Version 1 of Ticket #469


Ignore:
Timestamp:
Sep 12, 2005, 10:25:34 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #469 – Description

    initial v1  
    33But my problem is, when I hit the order "button" in the admin interface list view of the agencies table, I get the following Python stack trace. Do be more precise, this only happens when I try toorder the list using a field, that I referenced by a ForeignKey. Is this a bug or what I am doing wrong?
    44
     5{{{
    56There's been an error:
    67
     
    1415
    1516IndexError: list index out of range
     17}}}
    1618
    1719==== MODEL Excerpt ====
    1820
     21{{{
    1922class Agencytype(meta.Model):
    2023    name = meta.CharField(maxlength=32)
     
    5356                        )
    5457                    )
    55 
     58}}}
Back to Top