1
0
mirror of https://github.com/allerta-vvf/allerta-vvf synced 2025-06-06 00:49:21 +02:00

Add other tables

This commit is contained in:
2021-12-04 22:06:24 +01:00
parent 59f7fe27d1
commit e559f2c604
6 changed files with 123 additions and 12 deletions

View File

@ -9,8 +9,7 @@
</button>
</div>
<img class="owner_image" alt="VVF" src="assets/img/owner.png">
<br>
<div id="list" class="table-responsive">
<div id="list" class="table-responsive mt-4">
<table id="table" class="table table-striped table-bordered dt-responsive nowrap">
<thead>
<tr>

View File

@ -21,10 +21,3 @@
background-color: #dc3545;
border-color: #dc3545;
}
.owner_image {
display: block;
margin-left: auto;
margin-right: auto;
width: 150px;
}

View File

@ -1 +1,39 @@
<p>logs works!</p>
<img class="owner_image" alt="VVF" src="assets/img/owner.png">
<div id="list" class="table-responsive mt-4">
<table id="table" class="table table-striped table-bordered dt-responsive nowrap">
<thead>
<tr>
<th>Azione</th>
<th>Interessato</th>
<th>Fatto da</th>
<th>Data e ora</th>
</tr>
</thead>
<tbody id="table_body">
<tr>
<td>Login</td>
<td>Paolo Verdi</td>
<td>Paolo Verdi</td>
<td>2021-11-18 18:29:04</td>
</tr>
<tr>
<td>Login</td>
<td>Mario Rossi</td>
<td>Mario Rossi</td>
<td>2021-08-05 15:45:38</td>
</tr>
<tr>
<td>Attivazione disponibilita'</td>
<td>Mario Rossi</td>
<td>Paolo Verdi</td>
<td>2021-07-20 00:11:43</td>
</tr>
<tr>
<td>Rimozione disponibilita'</td>
<td>Paolo Verdi</td>
<td>Mario Rossi</td>
<td>2021-07-15 09:25:56</td>
</tr>
</tbody>
</table>
</div>

View File

@ -1 +1,40 @@
<p>services works!</p>
<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>

View File

@ -1 +1,36 @@
<p>trainings works!</p>
<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 esercitazione</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>Nome</th>
<th>Tempo inizio</th>
<th>Tempo fine</th>
<th>Caposquadra</th>
<th>Altre persone</th>
<th>Luogo</th>
<th>Note</th>
<th>Modifica</th>
<th>Elimina</th>
</tr>
</thead>
<tbody id="table_body">
<tr>
<td>01/01/2019</td>
<td>Esercitazione #1</td>
<td>10:00</td>
<td>12:00</td>
<td>Caposquadra</td>
<td>Altre persone</td>
<td>Luogo</td>
<td>Note</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>