标签: django django-templates django-template-filters
我想传递特定于页面渲染方式的模板变量到模板标记函数。我试过这个:
{{ lesson.description|program_refs:{{site_name}}|safe }}
我收到错误:
program_refs需要2个参数,1提供
答案 0 :(得分:1)
像这样(变量名称周围没有{{}}):
{{}}
{{ lesson.description|program_refs:site_name|safe }}