salvi/templates/circles/stats.jinja2

31 lines
800 B
Text
Raw Permalink Normal View History

2023-03-16 14:24:29 +01:00
{% extends "base.jinja2" %}
2021-09-04 08:10:28 +02:00
{% block title %}Circles {{ app_name }}{% endblock %}
{% block content %}
<h1>Stats</h1>
<ul>
<li>All people: <strong>{{ count }}</strong></li>
<li>People by type:</li>
<ul class="wrap_responsive_cells_narrow">
2021-09-04 08:10:28 +02:00
{% for k in typed_count.items() %}
<li>{{ k[0] }}: <strong>{{ k[1] }}</strong></li>
{% endfor %}
</ul>
<li>People by status zone:</li>
<ul>
{% for k in status_count.items() %}
<li>{{ k[0] }}: <strong>{{ k[1] }}</strong></li>
{% endfor %}
</ul>
<li>People by area:</li>
<ul class="wrap_responsive_cells_narrow">
{% for k in area_count.items() %}
<li>Area {{ k[0] }}: <strong>{{ k[1] }}</strong></li>
{% endfor %}
<li>No area: <strong>{{ no_area_count }}</strong></li>
</ul>
2021-09-04 08:10:28 +02:00
</ul>
{% endblock %}