Changes between Initial Version and Version 2 of Ticket #16751
- Timestamp:
- Sep 2, 2011, 2:48:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16751
- Property Resolution → needsinfo
- Property Status new → closed
-
Ticket #16751 – Description
initial v2 1 1 I'm attempting to override the queryset() method to make a custom filter for the Change List Admin view. The idea was to append ?myview=1 to the URL and then check it like so: 2 2 3 {{{ 3 4 if request.GET['myview'] == '1': 4 ... 5 … 6 }}} 5 7 6 8 But everything I pass via the URL string is being replaced by the key name 'e' in the GET dictionary: 7 9 10 {{{ 8 11 "Key 'myview' not found in <QueryDict: {u'e': [u'1']}>" 12 }}} 9 13 10 14 Curiously, this also happens in the final URL string. That is, the URL gets rewritten and redirected to ?e=1 as well.