15 lines
903 B
HTML
15 lines
903 B
HTML
<div class="input-group input-group-lg mb-1">
|
|
<div class="input-group-text py-1 px-2">
|
|
<input class="form-check-input fs-4 border-secondary mt-0" type="checkbox" value="">
|
|
</div>
|
|
<span class="form-control py-1 px-2">%s</span>
|
|
<button class="btn btn-outline-secondary text-secondary-emphasis dropdown-toggle py-1" type="button" data-bs-toggle="dropdown"></button>
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
<li><a class="dropdown-item text-primary fs-5" href="#" data-bs-toggle="modal" data-bs-id="%d" data-bs-target="#editPlayerModal">
|
|
<i class="bi bi-person-gear fs-4 me-2"></i>Bearbeiten
|
|
</a></li>
|
|
<li><a class="dropdown-item text-danger fs-5" href="#" data-bs-toggle="modal" data-bs-id="%d" data-bs-target="#deletePlayerModal">
|
|
<i class="bi bi-person-dash fs-4 me-2"></i>Löschen
|
|
</a></li>
|
|
</ul>
|
|
</div> |