1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 07:34:19 +00:00
estus/templates/dispositivo/list.htm

39 lines
1.7 KiB
HTML

{% extends "base.htm" %}
{% block title %}Elenco dispositivi • estus{% endblock %}
{% block content %}
<div class="page-header">
<h1>
Dispositivi
<a class="btn btn-success" href="/disp_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
</h1>
</div>
<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>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>{% if d[0].dispositivo.inv_ced %}{{ d[0].dispositivo.inv_ced }}{% endif %}</td>
<td>{{ d[0].dispositivo.marca }}</td>
<td>{{ d[0].dispositivo.modello }}</td>
<td>{{ d[0].dispositivo.seriale }}</td>
<td>
<a href="/disp_details/{{ d[0].did }}" title="Dettagli"><span class="glyphicon glyphicon-zoom-in"></span></a>
<a href="/disp_show/{{ d[0].did }}" title="Modifica"><span class="glyphicon glyphicon-pencil"></span></a>
<a href="/disp_clone/{{ d[0].did }}" title="Clona"><span class="glyphicon glyphicon-duplicate"></span></a>
<a href="/disp_del/{{ d[0].did }}" title="Elimina"><span class="glyphicon glyphicon-remove"></span></a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}