This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/pages/dogs/dog.html

83 lines
4.1 KiB
HTML
Raw Normal View History

2023-10-26 13:46:55 +02:00
<!-- FILEPATH: /home/chris/git/dogstats/web/pages/dogs/dog.html -->
<div class="container">
<div class="row">
<div class="col-3">
<div class="card">
2023-10-29 17:43:26 +01:00
<img src="<?= $dogdata['photo']?:'https://pictshare.net/1ch3e5.png' ?>/300x200/forcesize" class="card-img-top" alt="<?= escape($dogdata['name']); ?>'s profile Picture">
2023-10-26 13:46:55 +02:00
<div class="card-body">
<h5 class="card-title"><?= escape($dogdata['name']); ?></h5>
<p class="card-text">
<ul>
2023-10-26 16:41:33 +02:00
<li>Alter: <?= date_diff(date_create($dogdata['birthday']), date_create('now'))->y ?></li>
<?php if($dogdata['breed']): ?><li>Rasse: <?= escape($dogdata['breed']); ?></li> <?php endif; ?>
2023-10-26 16:41:33 +02:00
<?php if($dogdata['kennel_name']): ?><li>Zuchtname: <?= escape($dogdata['kennel_name']); ?></li> <?php endif; ?>
<?php if($dogdata['size']): ?><li>Größe: <?= escape($dogdata['size']); ?> cm</li> <?php endif; ?>
<?php if($dogdata['agility_size']): ?><li>Agility Größe: <?= escape($dogdata['agility_size']); ?></li> <?php endif; ?>
2023-10-26 13:46:55 +02:00
</ul>
<div class="d-flex justify-content-end">
<button type="button" class="btn btn-secondary" hx-get="/dogs/edit/<?= $dogid; ?>" hx-target="#main">
<i class="fas fa-edit"></i>
</button>
</div>
</div>
</div>
</div>
2023-10-31 22:43:08 +01:00
<div class="col-9" id="sitemain">
<!-- table of all runs of this dog-->
<div class="card p-2">
2023-10-31 22:50:36 +01:00
<h4>Alle Ergebnisse</h4>
2023-10-31 22:43:08 +01:00
<div class="table-responsive">
<table class="table">
<thead>
<tr>
2023-10-31 22:50:36 +01:00
<th>Turnier</th>
<th>Lauf</th>
2023-10-31 22:43:08 +01:00
<th>Platz</th>
<th>Disqualifiziert</th>
<th>Verweigerungen</th>
<th>Fehler</th>
<th>Zeitfehler</th>
<th>Zeit</th>
<th>Gesamtfehler</th>
<th>m/Sek</th>
<th>Bewertung</th>
<th>Teilnehmer</th>
</tr>
</thead>
<tbody>
<?php foreach($results as $result) : ?>
2023-10-31 22:50:36 +01:00
<?php
$t = new Tournament();
$run = new Run();
$tname = $t->getField('name',$result['tournament']);
$rname = $run->getField('name',$result['run']);
?>
2023-10-31 22:43:08 +01:00
<tr>
2023-10-31 22:50:36 +01:00
<td><a href="/tournaments/event/<?= $result['tournament']; ?>"><?= $tname; ?></a></td>
<td><a href="/runs/overview/<?= $result['run']; ?>"><?= $rname; ?></a></td>
2023-10-31 22:43:08 +01:00
<td><?= escape($result['ranking']); ?></td>
<td><?= $result['disqualified']?'Ja':'Nein'; ?></td>
<td><?= escape($result['refusals']); ?></td>
<td><?= escape($result['errors']); ?></td>
<td><?= escape($result['timefaults']); ?></td>
<td><?= escape($result['runtime']); ?></td>
<td><?= escape($result['penalties']); ?></td>
<td><?= escape($result['speed']); ?></td>
<td><?= escape($result['rating']); ?></td>
<td><a href="/dogs/overview/<?= $result['dog'] ?>"><?= escape( (new Dog())->getField('name',$result['dog']) ); ?></a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
2023-10-26 13:46:55 +02:00
</div>
</div>
</div>