Changes between Initial Version and Version 1 of Ticket #17665


Ignore:
Timestamp:
Feb 9, 2012, 7:15:05 AM (12 years ago)
Author:
Łukasz Rekucki
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17665 – Description

    initial v1  
    1515}}}
    1616
    17 But if you apply the {{{filter()}} directly to the manager:
     17But if you apply the {{{filter()}}} directly to the manager:
    1818
    19 {{{Company.objects.filter(membership_set__active=True, membership_set__person=1)}}}
     19{{{
     20Company.objects.filter(membership_set__active=True, membership_set__person=1)
     21}}}
    2022
    2123The behaviour is the same as query 2), while it should work like 1).
Back to Top