{% extends 'textrank/base.html' %}{% load i18n bootstrap4 %} {% block content %}
{% trans 'Регистрация слов' %} {% if result %} {{ result.word }} OK {% endif %}
{% csrf_token %} {{ form.non_field_errors }} {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %} {% for field in form.visible_fields %}{{ field|form_group }}{% endfor %}
{% trans 'Последние регистрации' %}
{% for weight in last_weights %} {% endfor %}
{% trans 'Слово' %} {% trans 'Группа' %} {% trans 'Вес' %}
{{ weight.keyword }} {{ weight.group }} {{ weight.value }}
{% trans 'Последние группы' %}
{% for group in last_groups %} {% endfor %}
{% trans 'Группа' %} {% trans 'Редактор' %}
{{ group.name }} {% if group.last_editor %} {{ group.last_editor }} {% else %} --- {% endif %}
{% trans 'Сводка' %}
{% trans 'Групп' %} {% trans 'Слов' %}
{% trans 'Активных' %} {{ active_groups.count }} {{ active_keywords.count }}
{% trans 'Неактивных' %} {{ notactive_groups.count }} {{ notactive_keywords.count }}
{% trans 'Всего' %} {{ all_groups.count }} {{ all_keywords.count }}
{% endblock %} {% block style_page %} {% endblock %} {% block javascript_page %} {% endblock %}