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.
40 lines
1.5 KiB
40 lines
1.5 KiB
<div class="wrap">
|
|
<h1>Enterwell Prize Entries</h1>
|
|
<table class="wp-list-table widefat striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Slika</th>
|
|
<th>Broj računa</th>
|
|
<th>Ime</th>
|
|
<th>Prezime</th>
|
|
<th>Adresa</th>
|
|
<th>Kućni broj</th>
|
|
<th>Mjesto</th>
|
|
<th>Poštanski broj</th>
|
|
<th>Država</th>
|
|
<th>Telefon</th>
|
|
<th>Email</th>
|
|
<th>Obriši</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($entries as $entry): ?>
|
|
<tr id="entry-<?php echo $entry['id']; ?>">
|
|
<td><img src="<?php echo $entry['image_url']; ?>" height="50" width="50"></td>
|
|
<td><?php echo $entry['receipt_number']; ?></td>
|
|
<td><?php echo $entry['first_name']; ?></td>
|
|
<td><?php echo $entry['last_name']; ?></td>
|
|
<td><?php echo $entry['address']; ?></td>
|
|
<td><?php echo $entry['house_number']; ?></td>
|
|
<td><?php echo $entry['city']; ?></td>
|
|
<td><?php echo $entry['zip']; ?></td>
|
|
<td><?php echo $entry['country']; ?></td>
|
|
<td><?php echo $entry['phone']; ?></td>
|
|
<td><?php echo $entry['email']; ?></td>
|
|
<td><button class="delete-entry" onclick="deleteEntry('<?php echo $entry['id']; ?>')">Delete</button></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|