{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% block title %} Statistics about blog articles {% endblock %} {% block meta %} {% endblock %} {% block stylesheet %} {% endblock %} {% block content %}

Blog statistics

{% for key, stats in all_stats.items %}

{{ key }} section

Number of original (not translations of) {{key}}s: {{ stats.n }}

Number of translations of original {{key}}: {{ stats.nt }}

Number of used languages: {{ stats.sl|length }}  ( {% for l in stats.sl %} {{ l }}{% if not forloop.last %}, {% endif %} {% endfor %}  )

Number of used categories: {{ stats.sc|length }}  ( {% for c in stats.sc %} {{ c }}{% if not forloop.last %}, {% endif %} {% endfor %} )

Number of {{ key }}s over category:

{% endfor %}
{% endblock %}