Date added show public

This commit is contained in:
2026-05-08 11:29:21 +02:00
parent 768f7467e3
commit 1f141fac7d
4 changed files with 15 additions and 27 deletions

View File

@@ -7,10 +7,10 @@
<th>Club</th>
<th>Rank</th>
<th>EGD Number</th>
<th>Date Added</th>
<?php if ($show_admin): ?>
<th>Rating</th>
<th>Email</th>
<th>Date Added</th>
<th>Action</th>
<th>Comment</th>
<?php endif; ?>
@@ -27,12 +27,12 @@
<td> <?= esc_html($e->club) ?> </td>
<td> <?= esc_html($ranks[$e->rank]) ?> </td>
<td> <?= esc_html($e->egd_number) ?> </td>
<td> <?= esc_html($e->created_at) ?> </td>
<?php if ($show_admin): ?>
<td> <?= esc_html($e->rating) ?> </td>
<td> <?= esc_html($e->email) ?> </td>
<td> <?= esc_html($e->created_at) ?> </td>
<td>
<?php action_button('go_form_delete_entry', 'Delete', 'Delete this entry?', $e->id); ?>
</td>