it's the little things that count
Build and push / Pulling repo on server (push) Successful in 3s Details

This commit is contained in:
Chris 2023-10-31 10:02:32 +01:00
parent cca9797f4e
commit 9b6e3080c2
2 changed files with 7 additions and 4 deletions

View File

@ -20,7 +20,7 @@ class Tournaments extends Page {
{
$t = new Tournament();
$t->load($tid);
$this->addSubmenuItem($t->data['name'],'/tournaments/event/'.$tid,'fas fa-dog');
$this->addSubmenuItem($t->data['name'],'/tournaments/event/'.$tid,'fas fa-calendar-star');
}
}
}

View File

@ -38,6 +38,7 @@
</div>
</div>
<?php if(($admins && count($admins)>1) || ($members && count($members)>0)): ?>
<div class="card p-2">
<?php if($admins && count($admins)>0): ?> <h6>Admins</h6> <?php endif; ?>
<?php foreach($admins as $adm) : ?>
@ -49,17 +50,19 @@
<img src="https://pictshare.net/identicon/<?= $member['email']?>" height="50" width="50" class="rounded-circle" alt="<?= escape($member['name']); ?>" title="<?= escape($member['firstname'].' '.$member['lastname']); ?>">
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
<div class="col-6" id="sitemain">
<div class="card p-2">
<?php if($tdata['text']): ?>
<div class="card p-2 mb-4">
<h4>Beschreibungstext</h4>
<p class="card-text">
<pre><?= escape($tdata['text']); ?></pre>
</p>
</div>
<?php endif; ?>
<div class="card p-2 mt-4">
<div class="card p-2">
<h4>Läufe</h4>
<p class="card-text">
<?php if($admin===true): ?>