I have a fairly simple question, but I can\'t seem to find a simple solution to it. I\'d like to iterate through an array in my Django template but skip the first value.
{% for a in array %} {% if not forloop.first %} {{ a }} {% endif %} {% endfor %}
There is of course forloop.last for the last iteration as well.
forloop.last
They are all listed in the Django reference.