streamlined breadcrumbs
All checks were successful
Build and push / Pulling repo on server (push) Successful in 12s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 12s
This commit is contained in:
parent
9bded6133e
commit
af05f1d520
@ -1,17 +1,21 @@
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item">
|
||||
<a href="/tournaments/event/<?= $tournament_id; ?>" hx-push-url="/tournaments/event/<?= $tournament_id; ?>" hx-get="/tournaments/event/<?= $tournament_id; ?>" hx-target="#main">
|
||||
<i class="fas fa-calendar-star"></i> <?= escape($tournament['name']); ?>
|
||||
<i class="fas fa-calendar-star"></i>
|
||||
<?= escape($tournament['name']); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li class="breadcrumb-item">
|
||||
<a href="/runs/overview/<?= $run_id; ?>" hx-push-url="/runs/overview/<?= $run_id; ?>" hx-get="/runs/overview/<?= $run_id; ?>" hx-target="#main">
|
||||
<i class="far fa-running"></i> <?= escape($run['name']); ?>
|
||||
<i class="far fa-running"></i>
|
||||
<?= escape($run['name']); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li class="breadcrumb-item active" aria-current="page">
|
||||
<i class="fas fa-edit"></i> <?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
||||
<i class="fas fa-edit"></i>
|
||||
<?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
@ -31,7 +35,9 @@
|
||||
$dog->load($dogid);
|
||||
$dd = $dog->data;
|
||||
?>
|
||||
<option value="<?= $dogid ?>" <?=$result['dog']==$dogid ?'selected':''; ?>><?= escape($dd['name']); ?></option>
|
||||
<option value="<?= $dogid ?>" <?=$result['dog']==$dogid ?'selected':''; ?>>
|
||||
<?= escape($dd['name']); ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
@ -100,3 +106,4 @@
|
||||
|
||||
<div id="response"></div>
|
||||
</form>
|
||||
</div>
|
@ -1,8 +1,13 @@
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="/tournaments/event/<?= $tournament_id; ?>" hx-push-url="/tournaments/event/<?= $tournament_id; ?>" hx-get="/tournaments/event/<?= $tournament_id; ?>" hx-target="#main"><?= escape($tournament['name']); ?></a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page"><?= escape($run['name']); ?></li>
|
||||
<li class="breadcrumb-item">
|
||||
<i class="fas fa-calendar-star"></i>
|
||||
<a href="/tournaments/event/<?= $tournament_id; ?>" hx-push-url="/tournaments/event/<?= $tournament_id; ?>" hx-get="/tournaments/event/<?= $tournament_id; ?>" hx-target="#main"><?= escape($tournament['name']); ?></a>
|
||||
</li>
|
||||
<li class="breadcrumb-item active" aria-current="page">
|
||||
<i class="far fa-running"></i> <?= escape($run['name']); ?>
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="row">
|
||||
|
Reference in New Issue
Block a user