You cannot delete an item, but you can get a list without a specific item (with a constant index)
{% with list2|slice:"1:" as list2 %}
...
{% endwith %}
Of course, nesting rules apply, etc.
In general, I believe that you are performing complex data manipulations, just move it to Python - it will be faster and cleaner.
source
share