|
|
|
|
@ -2,86 +2,66 @@ |
|
|
|
|
|
|
|
|
|
{% load static %} |
|
|
|
|
|
|
|
|
|
<!-- <script> |
|
|
|
|
// Set the date we're counting down to |
|
|
|
|
var countDownDate = new Date("Jan 5, 2024 15:37:25").getTime(); |
|
|
|
|
|
|
|
|
|
// Update the count down every 1 second |
|
|
|
|
var x = setInterval(function() { |
|
|
|
|
|
|
|
|
|
// Get today's date and time |
|
|
|
|
var now = new Date().getTime(); |
|
|
|
|
|
|
|
|
|
// Find the distance between now and the count down date |
|
|
|
|
var distance = countDownDate - now; |
|
|
|
|
|
|
|
|
|
// Time calculations for days, hours, minutes and seconds |
|
|
|
|
var days = Math.floor(distance / (1000 * 60 * 60 * 24)); |
|
|
|
|
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); |
|
|
|
|
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); |
|
|
|
|
var seconds = Math.floor((distance % (1000 * 60)) / 1000); |
|
|
|
|
|
|
|
|
|
// Display the result in the element with id="demo" |
|
|
|
|
document.getElementById("demo").innerHTML = hours + "h " |
|
|
|
|
+ minutes + "m " + seconds + "s "; |
|
|
|
|
|
|
|
|
|
// If the count down is finished, write some text |
|
|
|
|
if (distance < 0) { |
|
|
|
|
clearInterval(x); |
|
|
|
|
document.getElementById("demo").innerHTML = "EXPIRED"; |
|
|
|
|
} |
|
|
|
|
}, 1000); |
|
|
|
|
</script> --> |
|
|
|
|
|
|
|
|
|
<head> |
|
|
|
|
<link rel="stylesheet" href="{% static 'scores/style.css' %}"> |
|
|
|
|
<title>Padel - {{ match.title }} - COURS {{ match.court }}</title> |
|
|
|
|
<title>Padel</title> |
|
|
|
|
<meta http-equiv="refresh" content="15"/> |
|
|
|
|
</head> |
|
|
|
|
|
|
|
|
|
<!-- <p id="demo"></p> --> |
|
|
|
|
|
|
|
|
|
<div class="wrapper"> |
|
|
|
|
|
|
|
|
|
{% if match.club.header %} |
|
|
|
|
<header class="center">{{ match.club.header }}</header> |
|
|
|
|
{% if match.tournament.club.header %} |
|
|
|
|
<header class="scenter">{{ match.tournament.club.header }}</header> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
<main class="page-body"> |
|
|
|
|
{% autoescape off %} |
|
|
|
|
|
|
|
|
|
<div class="scontainer"> |
|
|
|
|
{% if match %} |
|
|
|
|
<div class="smatch"> |
|
|
|
|
|
|
|
|
|
<p>COURS {{ match.court }}</p> |
|
|
|
|
|
|
|
|
|
<h1>{{ match.title }}</h1> |
|
|
|
|
<h1 class="scenter" style="padding-bottom:20px">{{ match.title }}</h1> |
|
|
|
|
|
|
|
|
|
<!-- <p class="duration"> |
|
|
|
|
<div class="alignleft"><h1>{{ match.title }}</h1></div> |
|
|
|
|
<div class="big alignright"><a href="/match/{{ match.id }}/">TERRAIN #{{ match.court }}</a></div> |
|
|
|
|
</p> --> |
|
|
|
|
|
|
|
|
|
{% if match.team3 %} |
|
|
|
|
|
|
|
|
|
<table> |
|
|
|
|
<tr><td>{{ match.team1 }}</td> |
|
|
|
|
<tr><td class="steamname">{{ match.team1|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn1 %}<td class="score">{{ match.team1scorecolumn1 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn1 %}<td class="score">{{ match.team2scorecolumn1 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
<tr><td>{{ match.team2 }}</td> |
|
|
|
|
<tr><td class="steamname">{{ match.team2|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn2 %}<td class="score">{{ match.team1scorecolumn2 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn2 %}<td class="score">{{ match.team2scorecolumn2 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
<tr><td>{{ match.team3 }}</td> |
|
|
|
|
<tr><td class="steamname">{{ match.team3|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn3 %}<td class="score">{{ match.team1scorecolumn3 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn3 %}<td class="score">{{ match.team2scorecolumn3 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
<tr><td>{{ match.team4 }}</td> |
|
|
|
|
<tr><td class="steamname">{{ match.team4|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn4 %}<td class="score">{{ match.team1scorecolumn4 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn4 %}<td class="score">{{ match.team2scorecolumn4 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
|
|
|
|
|
<tr><td>{{ match.team5 }}</td> |
|
|
|
|
{% if match.team5 %} |
|
|
|
|
|
|
|
|
|
<tr><td class="steamname">{{ match.team5|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn5 %}<td class="score">{{ match.team1scorecolumn5 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn5 %}<td class="score">{{ match.team2scorecolumn5 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
</table> |
|
|
|
|
{% else %} |
|
|
|
|
|
|
|
|
|
<table> |
|
|
|
|
<tr> |
|
|
|
|
<td>{{ match.team1 }}</td> |
|
|
|
|
<td class="steamname">{{ match.team1|linebreaksbr }}</td> |
|
|
|
|
{% if match.team1scorecolumn1 %}<td class="score">{{ match.team1scorecolumn1 }}</td>{% endif %} |
|
|
|
|
{% if match.team1scorecolumn2 %}<td class="score">{{ match.team1scorecolumn2 }}</td>{% endif %} |
|
|
|
|
{% if match.team1scorecolumn3 %}<td class="score">{{ match.team1scorecolumn3 }}</td>{% endif %} |
|
|
|
|
@ -89,7 +69,7 @@ document.getElementById("demo").innerHTML = "EXPIRED"; |
|
|
|
|
{% if match.team1scorecolumn5 %}<td class="score">{{ match.team1scorecolumn5 }}</td>{% endif %} |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td>{{ match.team2 }}</td> |
|
|
|
|
<td class="steamname">{{ match.team2|linebreaksbr }}</td> |
|
|
|
|
{% if match.team2scorecolumn1 %}<td class="score">{{ match.team2scorecolumn1 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn2 %}<td class="score">{{ match.team2scorecolumn2 }}</td>{% endif %} |
|
|
|
|
{% if match.team2scorecolumn3 %}<td class="score">{{ match.team2scorecolumn3 }}</td>{% endif %} |
|
|
|
|
@ -100,19 +80,22 @@ document.getElementById("demo").innerHTML = "EXPIRED"; |
|
|
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
<p class="big">{{ match.duration }}</p> |
|
|
|
|
<!-- <p id="demo"></p> --> |
|
|
|
|
<p class="duration"> |
|
|
|
|
<div class="small"> {{ match.durationPrefix }}</div> |
|
|
|
|
<div class="sbig">{{ match.duration }}</div> |
|
|
|
|
</p> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{% else %} |
|
|
|
|
<p class="center">No matches at the moment...</p> |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{% endautoescape %} |
|
|
|
|
</main> |
|
|
|
|
|
|
|
|
|
{% if match.club.footer %} |
|
|
|
|
<footer class="page-footer, center">{{ match.club.footer }}</footer> |
|
|
|
|
{% if club.footer %} |
|
|
|
|
<footer class="page-footer, center">{{ club.footer }}</footer> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</html> |
|
|
|
|
</html> |
|
|
|
|
|