{% extends "base.html" %} {% block content %}
{% for match in event.matches %}

Match #{{forloop.counter}}

{% for team in match.teams %} {% for member in team %} {% endfor %} {% endfor %}
team #{{forloop.counter}}


{% endfor %}
{% csrf_token %}
{% endblock %}