我有一个显示日历的自定义模板标记。我想根据动态值填充日历上的某些项目。
这是标签:
@register.inclusion_tag("website/_calendar.html")
def calendar_table(post):
post=int(post)
imp=IMP.objects.filter(post__pk=post)
if imp:
...do stuff
在我的模板中,当我传递硬编码值时,它可以正常工作,例如
{% load inclusion_tags %}
{% calendar_table "6" %}
但是,当我尝试{%calendar_table“{{post.id}}”%}之类的内容时,会为int()尝试引发一个ValueError错误。我怎么能绕过这个?
答案 0 :(得分:9)
你想要{% calendar_table post.id %}
;额外的{{
和}}
是导致胃灼热的原因。
请注意,在自定义标记中,您需要获取传递的字符串("post.id"
)并使用Variable.resolve
针对上下文解析它。在Django文档中有更多关于它的信息;特别是,请看这里:http://docs.djangoproject.com/en/1.3/howto/custom-template-tags/#passing-template-variables-to-the-tag