it's the little things that count
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
This commit is contained in:
parent
cca9797f4e
commit
9b6e3080c2
@ -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');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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): ?>
|
||||
|
Reference in New Issue
Block a user