weird syntax error in django template -
{% item in items %} hiii {% endfor %)
i using template , while rendering getting
in template /home/user/code/templates/temp_name, error @ line 1
theres paren @ end of endfor instead of curly brace.
{% endfor %)
should be
{% endfor %}
Comments
Post a Comment