Smal changes for Go-zveza

This commit is contained in:
2026-05-31 19:03:54 +02:00
parent 7c6eaa895d
commit ad1a535795
2 changed files with 18 additions and 7 deletions

View File

@@ -4,9 +4,9 @@
<th>N</th>
<th>First Name</th>
<th>Last Name</th>
<th>Rank</th>
<th>Country</th>
<th>Club</th>
<th>Rank</th>
<th>EGD Number</th>
<th>Date Added</th>
<?php
@@ -31,9 +31,9 @@
<td> <?= $i + 1 ?> </td>
<td> <?= esc_html($e->first_name) ?> </td>
<td> <?= esc_html($e->last_name) ?> </td>
<td> <?= esc_html($ranks[$e->rank]) ?> </td>
<td> <?= esc_html($e->country) ?> </td>
<td> <?= esc_html($e->club) ?> </td>
<td> <?= esc_html($ranks[$e->rank]) ?> </td>
<td><a href="https://europeangodatabase.eu/EGD/Player_Card.php?&key=<?= esc_html($e->egd_number) ?>"><?= esc_html($e->egd_number) ?> </a> </td>
<td> <?= esc_html($e->created_at) ?> </td>
<?php