19 lines
356 B
HTML
19 lines
356 B
HTML
{% 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 %} |