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

31 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "base.htm" %}
2017-09-13 06:41:07 +00:00
{% block title %}Elenco impiegati • estus{% endblock %}
{% block content %}
<h1>
Impiegati esistenti
</h1>
<a class="btn btn-success" href="/imp_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
<table class="table table-hover">
<thead>
<tr>
<th>Nome ente</th>
<th>Nome servizio</th>
<th>Nome impiegato</th>
<th>Nome utente</th>
<th>Password</th>
<th>Azioni</th>
</tr>
</thead>
{% for imp in impiegati %}
<tr>
<td>{{ imp.servizio.ente.nomeente }}</td>
<td>{{ imp.servizio.nomeservizio }}
<td>{{ imp.nomeimpiegato }}</td>
2017-09-11 13:00:04 +00:00
<td><code>{{ imp.username }}</code></td>
<td><code>{{ imp.passwd }}</code></td>
<td><a href="/imp_details/{{ imp.iid }}" title="Dettagli"><span class="glyphicon glyphicon-zoom-in"></span></a> <a href="/imp_show/{{ imp.iid }}"><span class="glyphicon glyphicon-pencil"></span></a> <a href="/imp_del/{{ imp.iid }}"><span class="glyphicon glyphicon-remove"></span></a></td>
</tr>
{% endfor %}
</table>
{% endblock %}