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

35 lines
1.3 KiB
HTML
Raw Normal View History

{% extends "base.htm" %}
2017-09-13 06:41:07 +00:00
{% block title %}Elenco enti • estus{% endblock %}
{% block content %}
2017-09-20 10:01:07 +00:00
<div class="page-header">
<h1>
Enti
<a class="btn btn-success" href="/ente_add">
<span class="glyphicon glyphicon-plus"></span> Aggiungi
</a>
</h1>
</div>
<table class="table table-hover">
<thead>
<tr>
<th>Nome ente</th>
<th>Nome breve</th>
<th>Azioni</th>
</tr>
</thead>
<tbody>
{% for ente in enti %}
<tr>
<td>{{ ente.nomeente }}</td>
<td>{{ ente.nomebreveente }}</td>
2017-09-22 09:44:36 +00:00
<td>
<a href="{{ url_for("page_serv_list_plus", eid=ente.eid) }}" title="Trova servizi di questo ente"><span class="glyphicon glyphicon-list-alt"></span></a>
<a href="{{ url_for("page_ente_show", eid=ente.eid) }}" title="Modifica"><span class="glyphicon glyphicon-pencil"></span></a>
<a href="javascript:void(0)" onclick="delet(&quot;{{ url_for("page_ente_del", eid=12341234) }}&quot;, {{ ente.eid }}, &quot;{{ ente }}&quot;);" title="Elimina"><span class="glyphicon glyphicon-remove"></span></a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}