标签: django django-templates django-views
我知道我可以执行以下操作,使用if函数检查url与request.path与模板中的“活动”一词:
url
request.path
{% url 'dashboard' as dashboard %} {% if request.path == dashboard %}active{% endif %}
如何在if语句中调用url对象?例如:
if
{% if request.path == url.dashboard %}active{% endif %}