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

44 lines
1.2 KiB
Text
Raw Normal View History

2017-02-02 07:46:15 +00:00
<html>
<head>
<title>Elenco enti - Inventario</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="{{css}}">
</head>
<body>
{% include 'nav.html.j2' %}
<div class="container">
<div class="row">
2017-02-02 08:33:54 +00:00
<div class="col-sm-4">
2017-02-02 07:46:15 +00:00
<h2>
Servizi per ente
</h2>
<ul class="list-group">
{% for ente in conteggioservizi %}
<li class="list-group-item">
{{ente}}
<span class="badge">{{conteggioservizi[ente]}}</span>
</li>
{% endfor %}
</ul>
</div>
2017-02-02 08:33:54 +00:00
<div class="col-sm-4">
2017-02-02 07:46:15 +00:00
<h2>
Utenti per ente
</h2>
<ul class="list-group">
{% for ente in conteggioutenti %}
<li class="list-group-item">
{{ente}}
<span class="badge">{{conteggioutenti[ente]}}</span>
</li>
{% endfor %}
</ul>
</div>
2017-02-02 08:33:54 +00:00
<div class="col-sm-4">
2017-02-02 07:46:15 +00:00
Destra
</div>
</div>
</div>
</body>
</html>