{% extends 'partials/base.html' %} {% block name %}matches{% endblock %} {% block content %}
{% if list_of_matches %} {% for match in list_of_matches %} {% endfor %}
{{ match[0]['title'] }} {% for card in match %} {{ names_by_ids[card['owner_id']] }} {% endfor %} send email
{% else %}

You have no matches at the moment.

{% endif %}
{% endblock %}