responsive tabel added
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
2f771958d1
commit
99f44c9bb2
@ -69,6 +69,7 @@
|
|||||||
<button hx-get="/runs/add/<?= $tournament_id; ?>" hx-push-url="/runs/add/<?= $tournament_id; ?>" hx-target="#main" class="btn btn-primary"><i class="fas fa-plus-circle"></i> Lauf hinzufügen</button>
|
<button hx-get="/runs/add/<?= $tournament_id; ?>" hx-push-url="/runs/add/<?= $tournament_id; ?>" hx-target="#main" class="btn btn-primary"><i class="fas fa-plus-circle"></i> Lauf hinzufügen</button>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="table-responsive">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -78,6 +79,7 @@
|
|||||||
<th>Normzeit</th>
|
<th>Normzeit</th>
|
||||||
<th>Maxzeit</th>
|
<th>Maxzeit</th>
|
||||||
<th>Richter</th>
|
<th>Richter</th>
|
||||||
|
<th>Hund</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -93,10 +95,12 @@
|
|||||||
<td><?= escape($run->data['time_standard']); ?>s</td>
|
<td><?= escape($run->data['time_standard']); ?>s</td>
|
||||||
<td><?= escape($run->data['time_max']); ?>s</td>
|
<td><?= escape($run->data['time_max']); ?>s</td>
|
||||||
<td><?= escape($run->data['referee']); ?></td>
|
<td><?= escape($run->data['referee']); ?></td>
|
||||||
|
<td><?= escape($run->data['dog']); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user