#28687: Add a 'Not Empty' option to admin's related filter
-------------------------------------+-------------------------------------
     Reporter:  Brillgen Developers  |                    Owner:  Jake
         Type:                       |  Barber
  Cleanup/optimization               |                   Status:  new
    Component:  contrib.admin        |                  Version:  2.0
     Severity:  Normal               |               Resolution:
     Keywords:                       |             Triage Stage:  Accepted
    Has patch:  1                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  1
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by Sardorbek Imomaliev):

 * status:  closed => new
 * resolution:  wontfix =>


Comment:

 I think we should reopen this and fix an issue with current
 `RelatedFieldListFilter`. For example currently to add `Not Empty` choice
 you need to do this

 {{{
 #!div style="font-size: 80%"
 Code highlighting:
   {{{#!python
   class NotEmptyFilter(admin.RelatedFieldListFilter):
       @property
       def include_empty_choice(self):
           # FIXME: empty value selected incorrectly override in choices
           return False

       def has_output(self):
           return super().has_output() + 2

       def choices(self, changelist):
           yield from super().choices(changelist)
           yield {
               'selected': self.lookup_val_isnull == 'True',
               'query_string': changelist.get_query_string(
                   {self.lookup_kwarg_isnull: 'True'}, [self.lookup_kwarg]
               ),
               'display': _('Empty'),
           yield {
               'selected': self.lookup_val_isnull == 'False',
               'query_string': changelist.get_query_string(
                   {self.lookup_kwarg_isnull: 'False'}, [self.lookup_kwarg]
               ),
               'display': _('Not Empty'),
           }
   }}}
 }}}

 But you should be able to do just
 {{{
 #!div style="font-size: 80%"
 Code highlighting:
   {{{#!python
   class NotEmptyFilter(admin.RelatedFieldListFilter):
       def has_output(self):
           return super().has_output() + 1

       def choices(self, changelist):
           yield from super().choices(changelist)
           yield {
               'selected': self.lookup_val_isnull == 'False',
               'query_string': changelist.get_query_string(
                   {self.lookup_kwarg_isnull: 'False'}, [self.lookup_kwarg]
               ),
               'display': _('Not Empty'),
           }
   }}}
 }}}

 Currently this is not possible because of `bool(self.lookup_val_isnull)`
 check in selected for `Empty` choice, and if we add `Not Empty` choice
 like in second example we will get both `Empty` and `Not Empty` choices
 rendered as selected on `Not Empty`

-- 
Ticket URL: <https://code.djangoproject.com/ticket/28687#comment:10>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/066.d8834ce0eae1c6f61121aab9ccc0001b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to