nettere anzeige wenn keine daten vorhanden sind
Build and push / Pulling repo on server (push) Successful in 3s Details

This commit is contained in:
Chris 2023-11-01 20:01:21 +01:00
parent 4794f46add
commit e03d9ab449
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@
<?= escape($result['rating']); ?>
</td>
<td><a href="/dogs/overview/<?= $result['dog'] ?>">
<?= escape( (new Dog())->getField('name',$result['dog']) ); ?>
<?= escape( escape($dogdata['name']) ); ?>
</a></td>
</tr>
<?php endforeach; ?>
@ -135,7 +135,7 @@
<tr>
<td colspan="12">
<div class="alert alert-info" role="alert">
<i class="fas fa-info-circle"></i> Dieser Hund hat noch keine Ergebnisse
<i class="fas fa-info-circle"></i> <?= escape($dogdata['name']); ?> hat noch keine Ergebnisse
</div>
</td>
<?php endif; ?>