无效的块标记:预期'elif','else'或'endif'

时间:2013-06-23 13:55:49

标签: django django-templates

我不理解错误。当它存在时,它会抱怨endif。

{% if pdf_enable %}
    {% download_url request.get_full_path "Download as Excel" %}
{% endif %}

我错过了什么吗?

1 个答案:

答案 0 :(得分:11)

您需要load the custom template tag set包含download_url标记。

例如,如果download_url标记位于名为download_tags的模块中,您可以将以下内容添加到模板中。

{% load download_tags %}