{% extends 'base.html' %} {% block header %} Matches {% endblock %} {% block content %}

Hello

{% if list_of_matches %} {% for match in list_of_matches %} {% for card in match %}

{{ card['title'] }}

{% endfor %} {% endfor %} {% else %}

You have no matches at the moment

{% endif %} {% endblock %}