Changes between Initial Version and Version 1 of Ticket #18729, comment 2
- Timestamp:
- Aug 24, 2015, 7:07:40 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18729, comment 2
initial v1 2 2 It is possible to alter the check that examines list_filter to determine if distinct() is needed based on if the field appears in the query/request but this does not address the deeper issues in #15819 3 3 For example in Django 1.5.2 I think the following changes solves the issue: 4 4 {{{ 5 5 django/contrib/admin/util.py: 6 6 20c20 … … 20 20 --- 21 21 > field_path)) 22 }}}