[Answer]-Error in Django Template Blocks

1👍

There is a typo at the end of the following line (need } instead of )):

{% for hidden in raw_rows %)
                           ^ HERE 

Fixed version:

{% for hidden in raw_rows %}
👤alecxe

Leave a comment