{% load admin_tags %}
Each filter has an identifier that can be used in Compact Filters View. The identifiers for the filters at the top of this page are: {% for filter in filter_dict %} {{ filter.name }}{% if forloop.last %}.{% else %}, {% endif %} {% endfor %}
When you search for keywords in text fields you can perform logical AND by using spaces and logical OR by using {{ ADMIN_OR_SIGN }}. The evaluation order of these two operators is from left to right.
Also, it is recommended to use the logical operators in uppercase and the keywords in lowercase or camelcase.
Example We have the users Jane Roe and John Doe.
Search: user: Jane {{ ADMIN_OR_SIGN}} John Doe => (Jane OR John) AND Doe =>
Result: John Doe
Search:user: Jane Roe {{ ADMIN_OR_SIGN}} John => (Jane and Roe) OR John =>
Result: Jane Roe, John Doe