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.
41 lines
1.5 KiB
41 lines
1.5 KiB
<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="bigcenter">{{ club.header }}</header>
|
|
{% endif %}
|
|
|
|
<main class="page-body">
|
|
|
|
{% for tournament in tournaments %}
|
|
|
|
<div class="sbig">
|
|
<ul>
|
|
{% if tv %}
|
|
<li><a href="/tv/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/">{{ tournament.name }}</a> | <a href="/tv/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/classement">Classement</a> | <a href="/tv/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/equipes">Équipes</a> | <a href="/tv/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/poules">Poules</a></li>
|
|
{% else %}
|
|
<li><a href="/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/">{{ tournament.name }}</a> | <a href="/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/classement">Classement</a> | <a href="/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/equipes">Équipes</a> | <a href="/club/{{ tournament.club.name }}/tournoi/{{ tournament.id }}/poules">Poules</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</main>
|
|
|
|
{% if club.footer %}
|
|
<footer class="page-footer, center">{{ club.footer }}</footer>
|
|
{% endif %}
|
|
|
|
|
|
</html>
|
|
|