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.
76 lines
2.9 KiB
76 lines
2.9 KiB
<html>
|
|
{% load static %}
|
|
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link
|
|
rel="stylesheet" type="text/css"
|
|
href="{% static 'tournaments/foundation.min.css' %}"
|
|
/>
|
|
<link rel="stylesheet" href="{% static 'tournaments/css/basics.css' %}" />
|
|
<link rel="stylesheet" type="text/css" href="{% static 'tournaments/style.css' %}" />
|
|
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="{% static 'tournaments/favicon.png' %}"
|
|
/>
|
|
|
|
<title>Padel Club</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<main class="page-body">
|
|
<div class="container">
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
<img
|
|
src="{% static 'tournaments/PadelClub_logo_512.png' %}"
|
|
class="logo inline"
|
|
/>
|
|
<div class="inline">
|
|
<h1 class="club">Bienvenue !</h1>
|
|
<h1 class="event">Tournois</h1>
|
|
<!-- <span>Propulsé par Padel Club</span> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid-x">
|
|
{% if live %}
|
|
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
<label class="matchtitle">En cours</label>
|
|
<div class="test1">test1</div>
|
|
|
|
{% for tournament in live %}
|
|
|
|
<div>
|
|
<div class="w15 inline">
|
|
<div>{{ tournament.level }}</div>
|
|
<div>{{ tournament.category }}</div>
|
|
</div>
|
|
<div class="w60 inline">
|
|
{{ tournament.event.club.name }}
|
|
</div>
|
|
<div class="w25 mybox inline">
|
|
{{ tournament.start_date|date:"Y-m-d" }}
|
|
</div>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|