mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
{% extends "base.htm" %}
|
|
{% block content %}
|
|
<h1>
|
|
Dispositivi esistenti
|
|
</h1>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Tipo dispositivo</th>
|
|
<th>Utenti</th>
|
|
<th>Inventario CED</th>
|
|
<th>Marca</th>
|
|
<th>Modello</th>
|
|
<th>Fornitore</th>
|
|
<th>Seriale</th>
|
|
<th>Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
{% for d in accessi %}
|
|
<tr>
|
|
<td>{{ d[0].dispositivo.tipo }}</td>
|
|
<td>{% for u in d %}<p>{{ u.impiegato.nomeimpiegato }}</p>{% endfor %}</td>
|
|
<td>{{ d[0].dispositivo.inv_ced }}</td>
|
|
<td>{{ d[0].dispositivo.marca }}</td>
|
|
<td>{{ d[0].dispositivo.modello }}</td>
|
|
<td>{{ d[0].dispositivo.fornitore }}</td>
|
|
<td>{{ d[0].dispositivo.seriale }}</td>
|
|
<td><a href="/disp_details/{{ d[0].did }}"><span class="glyphicon glyphicon-list-alt"></span></a> <a href="/disp_show/{{ d[0].did }}"><span class="glyphicon glyphicon-pencil"></span></a> <a href="/disp_del/{{ d[0].did }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<a class="btn btn-success" href="/disp_add">Aggiungi</a>
|
|
{% endblock %}
|