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

32 lines
1,014 B
HTML
Raw Normal View History

{% extends "base.htm" %}
{% block title %}Dashboard - Estus{% endblock %}
{% block content %}
<div class="row">
2017-09-12 06:26:58 +00:00
<div class="col-sm-6">
<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-09-12 06:26:58 +00:00
<div class="col-sm-6">
<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>
{% endblock %}