{% extends "base-margins.html" %}
{% load i18n %}
{% load static %}
{% load custom_templatetags %}
{% block title %}{% trans "Statystyki" %}{% endblock %}
{% block scripts %}
{% endblock %}
{% block content2 %}
{% trans "Status / część mowy" %} |
{% for pos in all_pos %}
{{ pos }} |
{% endfor %}
{% for status in all_statuses %}
{{ status }} |
{% for num in entry_stats|get_item:status %}
{{ num }} |
{% endfor %}
{% endfor %}
{% for opinion, opinion_key, n in schema_stats %}
{% if opinion_key != "all" %} {% endif %}{{ opinion }}
|
{% endfor %}
{% for opinion, opinion_key, n in schema_stats %}
{{ n }} |
{% endfor %}
{% for opinion, opinion_key, n in frame_stats %}
{% if opinion_key != "all" %} {% endif %}{{ opinion }}
|
{% endfor %}
{% for opinion, opinion_key, n in frame_stats %}
{{ n }} |
{% endfor %}
{% endblock %}