Changes between Initial Version and Version 1 of Ticket #469
- Timestamp:
- Sep 12, 2005, 10:25:34 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #469 – Description
initial v1 3 3 But 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? 4 4 5 {{{ 5 6 There's been an error: 6 7 … … 14 15 15 16 IndexError: list index out of range 17 }}} 16 18 17 19 ==== MODEL Excerpt ==== 18 20 21 {{{ 19 22 class Agencytype(meta.Model): 20 23 name = meta.CharField(maxlength=32) … … 53 56 ) 54 57 ) 55 58 }}}