Left Align title and add public holidays on mouse over
This commit is contained in:
parent
f3f6fed5a8
commit
5e4aa9b18c
@ -79,6 +79,9 @@ function renderTable() {
|
||||
// Date cell
|
||||
const dateTd = document.createElement('td');
|
||||
dateTd.innerText = date;
|
||||
if (date === '29/05/25' || date === '25/12/25') {
|
||||
dateTd.title = 'Public Holiday';
|
||||
}
|
||||
tr.appendChild(dateTd);
|
||||
// Player attendance
|
||||
[...data.players, data.guest].forEach((player, colIdx) => {
|
||||
|
||||
@ -104,7 +104,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align: center; margin-bottom: 1em;">
|
||||
<div style="text-align: left; margin-bottom: 1em;">
|
||||
<h1 style="margin: 0;">Padel Nivelles</h1>
|
||||
</div>
|
||||
<div class="table-container">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user