31 lines
785 B
HTML
31 lines
785 B
HTML
{% extends "kaehmy:base.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load i18n %}
|
|
|
|
{% block navigation %}
|
|
{% include "kaehmy:navigation.html" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<div>
|
|
<h2 style="padding-top: 1rem">{% trans "Statistics" %}</h2>
|
|
</div>
|
|
|
|
<div style="margin-top: 1rem" class="card">
|
|
<div class="card-header">
|
|
<h5>{% trans "Total kaehmys:" %} {{ application_count }}</h5>
|
|
</div>
|
|
<div class="card-block">
|
|
{% for role in role_list %}
|
|
<div>
|
|
<p>{{ role.0 }} <strong data-toggle="tooltip" data-placement="right" title="{{ role.2 }}">({{ role.1 }})</strong></p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock content %}
|