1👍
You’ll have to quote org
and dashboard
as strings, and then test their containment separately:
{% if 'org' in request.path and 'dashboard' in request.path %}
The syntax follows that of plain Python.
Reference
Source:stackexchange.com
1👍
You’ll have to quote org
and dashboard
as strings, and then test their containment separately:
{% if 'org' in request.path and 'dashboard' in request.path %}
The syntax follows that of plain Python.
Reference