标签: django django-templates
是否可以在“url”templatetag中使用变量,即:
{% url object.add %}
其中:
object.add = 'myapp.view.function'
任何sugestions?
答案 0 :(得分:2)
没有。您需要write your own template tag来调用reverse()。
reverse()