allerta-vvf/frontend/src/app/_components/services/services.component.html

40 lines
1.3 KiB
HTML
Raw Normal View History

2021-12-04 22:06:24 +01:00
<img class="owner_image" alt="VVF" src="assets/img/owner.png">
<div class="text-center mb-4">
<button type="button" class="btn btn-primary">Aggiungi intervento</button>
</div>
<div id="list" class="table-responsive">
<table id="table" class="table table-striped table-bordered dt-responsive nowrap">
<thead>
<tr>
<th>Data</th>
<th>Codice</th>
<th>Tempo inizio</th>
<th>Tempo fine</th>
<th>Caposquadra</th>
<th>Autisti</th>
<th>Altre persone</th>
<th>Luogo</th>
<th>Note</th>
<th>Tipo</th>
<th>Modifica</th>
<th>Rimuovi</th>
</tr>
</thead>
<tbody id="table_body">
<tr>
<td>01/01/2019</td>
<td>12345</td>
<td>10:00</td>
<td>12:00</td>
<td>Caposquadra</td>
<td>Autista</td>
<td>Altre persone</td>
<td>Luogo</td>
<td>Note</td>
<td>Tipo</td>
<td><i style="font-size: 40px" class="fa fa-edit"></i></td>
<td><i style="font-size: 40px" class="fa fa-trash"></i></td>
</tr>
</tbody>
</table>
</div>