2023-10-26 21:18:32 +02:00
<!-- FILEPATH: /home/chris/git/tournamentstats/web/pages/tournaments/dog.html -->
< div class = "container" >
< div class = "row" >
< div class = "col-3" >
< div class = "card" >
< img src = "<?= $tdata['logo'] ?>/300x170/fixedsize" class = "card-img-top" alt = "<?= escape($tdata['name']); ?>'s profile Picture" >
< div class = "card-body" >
< h5 class = "card-title" > <?= escape($tdata['name']); ?> < / h5 >
< p class = "card-text" >
< ul >
< li > Datum: <?= escape($tdata['date']) ?> < / li >
<?php if($tdata['duration']): ?> < li > Dauer: <?= escape($tdata['duration']); ?> Tag/e< / li > <?php endif; ?>
<?php if($tdata['referee']): ?> < li > Richter: <?= escape($tdata['referee']); ?> < / li > <?php endif; ?>
<?php if($tdata['size']): ?> < li > Größe: <?= escape($tdata['size']); ?> cm< / li > <?php endif; ?>
<?php if($tdata['url']): ?> < li > Webseite: < a href = "<?= $tdata['url']; ?>" > <?= escape($tdata['url']); ?> < / a > < / li > <?php endif; ?>
< / ul >
2023-10-26 21:48:04 +02:00
2023-10-26 21:18:32 +02:00
< div class = "d-flex justify-content-end" >
2023-10-26 21:48:04 +02:00
<?php if($admin===true): ?>
2023-10-26 21:18:32 +02:00
< button type = "button" class = "btn btn-secondary" hx-get = "/tournaments/edit/<?= $tournament_id; ?>" hx-target = "#main" >
< i class = "fas fa-edit" > < / i >
< / button >
2023-10-26 21:48:04 +02:00
<?php endif; ?>
<?php if($joined===false): ?>
< button type = "button" class = "btn btn-secondary" hx-get = "/tournaments/manage/join/<?= $tournament_id; ?>" hx-swap = "outerHTML" >
< i class = "fas fa-plus-circle" > < / i > Diesem Event beitreten
< / button >
<?php elseif($admin===false): ?>
< button type = "button" class = "btn btn-danger" hx-get = "/tournaments/manage/leave/<?= $tournament_id; ?>" hx-swap = "outerHTML" hx-confirm = "Möchtest du dieses Event wirklich verlassen?" >
< i class = "fas fa-minus-circle" > < / i > Event verlassen
< / button >
<?php endif; ?>
2023-10-26 21:18:32 +02:00
< / div >
2023-10-26 21:48:04 +02:00
2023-10-26 21:18:32 +02:00
< / div >
2023-10-27 11:52:31 +02:00
< / div >
< div class = "card p-2" >
<?php foreach($admins as $admin) : ?>
< img src = "https://pictshare.net/identicon/<?= $admin['email']?>" height = "50" width = "50" class = "rounded-circle" alt = "<?= escape($admin['name']); ?>" data-bs-toggle = "tooltip" data-bs-placement = "top" title = "<?= escape($admin['name']); ?>" >
<?php endforeach; ?>
< / div >
2023-10-26 21:18:32 +02:00
< / div >
< div class = "col-8" id = "sitemain" >
< pre > <?= escape($tdata['text']); ?> < / pre >
< / div >
< / div >
< / div >