标签: python django django-templates
我想将参数字典作为kwargs传递给templatetag。
通常,我们会写:
{% my_templatetag x=1 y=2 %}
如果我们将这些参数作为视图提供的字典怎么办?
context['parameters'] = { 'x' : 1, 'y' : 2 }
不幸的是,以下代码不起作用:
{% my_templatetag **parameters %}