django模板中的奇怪语法错误

Bun*_*bit 0 django django-templates

{% for item in items %}
   hiii 
{% endfor %)
Run Code Online (Sandbox Code Playgroud)

我正在使用这个模板,而我正在渲染它

在template/home/user/code/templates/temp_name中,第1行出错

Sam*_*lan 5

在结尾处有一个paren而不是一个大括号.

{% endfor %)
Run Code Online (Sandbox Code Playgroud)

应该

{% endfor %}
Run Code Online (Sandbox Code Playgroud)