{% load static %}
Album
{% for athlete in athletes %} {% if forloop.counter0|divisibleby:2 %}
{% endif %}
{{ athlete.id_number|upper}} ({{athlete.gender|upper}})
{% if athlete.photo %}
{% else %}
{% endif %}
{{ athlete.fname|upper }} {{athlete.lname|upper }}
{{ athlete.school|upper }}
{{ athlete.sport|upper }}
{% if forloop.last or forloop.counter0|add:1|divisibleby:2 %}
{% endif %} {% endfor %}