{% extends 'base.html' %} {% block title %}Puchar Dyrektora - wyniki{% endblock %} {% block content %}
Klasyfikacja indywidualna {% for student in individual %} {% endfor %}
# Uczeń Wynik Tytuł
{{ forloop.counter }} {{ student.score }} {{ student.title }}
Klasyfikacja szkół {% for team in teams %} {% endfor %}
# Szkoła Miejscowość Wynik
{{ forloop.counter }} {{ team.name }} {{ team.town }} {{ team.score }}
{% endblock %}