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

35 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "base.htm" %}
{% block title %}Dashboard - Estus{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-4">
<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>
<div class="col-sm-4">
<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>
<div class="col-sm-4">
Destra
</div>
</div>
{% endblock %}