You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
654 B
36 lines
654 B
<html>
|
|
|
|
{% load static %}
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="{% static 'scores/style.css' %}">
|
|
<title>Padel - {{ club.name }}</title>
|
|
<meta http-equiv="refresh" content="15"/>
|
|
</head>
|
|
|
|
<!-- <p id="demo"></p> -->
|
|
|
|
<div class="wrapper">
|
|
|
|
{% if club.header %}
|
|
<header class="center">{{ club.header }}</header>
|
|
{% endif %}
|
|
|
|
<main class="page-body">
|
|
|
|
{% for tournament in tournaments %}
|
|
|
|
<ul>
|
|
<li><a href="{{ tournament.id }}/">{{ tournament.name }}</a></li>
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
</main>
|
|
|
|
{% if club.footer %}
|
|
<footer class="page-footer, center">{{ club.footer }}</footer>
|
|
{% endif %}
|
|
|
|
|
|
</html>
|
|
|