Is it possible if the django template tags skip the first item in the list when executing a for loop? For example, I want to start with element 1 instead of 0.
built-in slice filter
{{ qs|slice:"1:" }}
You can, for example, do:
{% if not forloop.first %} ... {% endif %}