Changes between Initial Version and Version 2 of Ticket #11804


Ignore:
Timestamp:
Feb 3, 2010, 8:17:58 AM (14 years ago)
Author:
Russell Keith-Magee
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11804

    • Property Cc marcoberi@… added
    • Property Component django-admin.pydjango.contrib.admin
    • Property Has patch set
    • Property Needs tests set
  • Ticket #11804 – Description

    initial v2  
    1 I have a link for my users that open a changelist page with a user__id__isnull=True. That changelist has also a list filter on my users. When a user is chosen, the filter __isnull is not removed.
     1I have a link for my users that open a changelist page with a user!__id!__isnull=True. That changelist has also a list filter on my users. When a user is chosen, the filter !__isnull is not removed.
    22I wrote this (working) patch modifying get_query_string function in admin/views/main.py.
    3 I remove __isnull when __exact is passed (in remove or in new_params)
     3I remove !__isnull when !__exact is passed (in remove or in new_params)
Back to Top