我尝试在Django 1.6中创建自己的赋值模板标签(编辑:我也尝试了1.5.5 w / o成功)但我无法做任何事情。
在templatetags/getattribute.py
我有:
from django import template
import logging
register = template.Library()
logger = logging.getLogger('wwwcid.website.debug_console')
#@register.assignment_tag
def mytag(context, context_variable):
raise template.TemplateSyntaxError("buuuuuuuuuuuuuuus")
logger.debug("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
print "teeeeeeeeeeeeeeeeeeeest"
return 'tpppppppppppppppppppppeee'
register.assignment_tag(mytag, takes_context=True)
在我的模板profile.html
中,我有:
{% extends "website/base.html" %}
{% load getattribute %}
{% mytag "user.email" as vari %}
{{ vari }}
{% block content %}
<p> Rest of the page. </p>
{% endblock content %}
但是这个标签不起作用。没有错误(即使我自己提出),没有记录输出,没有打印,没有返回,没有。
即使我注册了带有take_context = True的标签,也就是说@register.assignment_tag
它不起作用。我在这做错了什么?谢谢你的帮助!
答案 0 :(得分:7)
好的,我应该粘贴代码,因为我在我的应用程序中确实拥有它。我编辑了上面的profile.html部分以反映实际情况。问题是标签和变量仅在{% block foo %}
和{% endblock foo %}
之间执行。因此,使用以下profile.html
模板可以运行:
{% extends "website/base.html" %}
{% load getattribute %}
{% block content %}
{% mytag "user.email" as vari %}
{{ vari }}
<p> Rest of the page. </p>
{% endblock content %}