2023-03-16 14:24:29 +01:00
|
|
|
{% extends "base.jinja2" %}
|
2021-02-23 22:54:08 +01:00
|
|
|
|
|
|
|
|
{% block title %}Statistics - {{ app_name }}{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h1>Statistics</h1>
|
|
|
|
|
|
|
|
|
|
<ul>
|
2022-11-30 18:07:59 +01:00
|
|
|
<li>{{ T("notes-count") }}: <strong>{{ notes_count }}</strong></li>
|
|
|
|
|
<li>{{ T("notes-count-with-url") }}: <strong>{{ notes_with_url }}</strong></li>
|
|
|
|
|
<li>{{ T("revision-count") }}: <strong>{{ revision_count }}</strong></li>
|
|
|
|
|
<li>{{ T("revision-count-per-page") }}: <strong>{{ (revision_count / notes_count)|round(2) }}</strong></li>
|
|
|
|
|
<li>{{ T('users-count') }}: <strong>{{ users_count }}</strong></li>
|
2023-04-06 23:02:07 +02:00
|
|
|
<li>{{ T('groups-count') }}: <strong>{{ groups_count }}</strong></li>
|
2021-02-23 22:54:08 +01:00
|
|
|
</ul>
|
|
|
|
|
{% endblock %}
|