Skip to content Skip to sidebar Skip to footer
Showing posts with the label Django Q

Django Building A Queryset With Q Objects

I have a form that allows you to pick multiple project types to filter from. For instance, say you… Read more Django Building A Queryset With Q Objects

Logical Operations In Django Filter

I need to get my queryset where: (a='a' AND b=None) OR (a=None AND b='b') I know… Read more Logical Operations In Django Filter