SuiteCoffee/services/manso/src/views/estadoComanas.ejs

19 lines
610 B
Plaintext

<div class="d-flex align-items-center justify-content-between mb-3">
<h1 class="h4 m-0">Estado de Comandas</h1>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="soloAbiertas">
<label class="form-check-label" for="soloAbiertas">Solo abiertas</label>
</div>
</div>
<!-- tu tabla/listado acá -->
<table class="table table-sm table-bordered">
<thead><tr><th>ID</th><th>Mesa</th><th>Estado</th></tr></thead>
<tbody>
<tr>
<td>1</td><td>5</td>
<td><span class="badge badge-outline badge-estado-abierta">Abierta</span></td>
</tr>
</tbody>
</table>