contentmatcher/templates/matches.html

19 lines
356 B
HTML
Raw Normal View History

2022-06-14 02:17:58 +02:00
{% extends 'base.html' %}
{% block header %}
<head>Matches</head>
{% endblock %}
{% block content %}
<p>Hello</p>
{% if list_of_matches %}
{% for match in list_of_matches %}
{% for card in match %}
<p>{{ card['title'] }}</p>
{% endfor %}
{% endfor %}
{% else %}
<p>You have no matches at the moment</p>
{% endif %}
{% endblock %}