我已经写了包含标签,它需要上下文和 *args 和 **kwargs
@register.inclusion_tag('template.html', takes_context=True)
def my_tag(a, b, *args, **kwargs):
print 'Kwargs: '
return .....
模板:
{% my_tag 1 1 2 page=10 %}
Error message:
Request Method: GET
Request URL: http://localhost:8000/
Django Version: 1.3.1
Exception Type: TemplateSyntaxError
Exception Value:
my_tag takes 2 arguments
我的代码有什么问题?