我正在使用将变量传递到我的视图中以与url
标记一起使用:
{% load url from future %}
...
{% if notification.url %}
<a href='{% url notification.url %}'>{% notification.text %}</a>
{% endif %}
notification.url
设置为post
,我希望指向的网址名称,但网址不会反转,因为{% url 'post' %}
会是。
我做错了什么?