{% extends './base.html'%} {% load i18n bootstrap4 html navigation %} {% block body_class %}keywords{% endblock %} {% block content %}{% newlineless %}{% spaceless %}
{% if instance %}

{% trans 'Ключевое слово' %} #{{ instance.id }}

{% else %}

{% trans 'Ключевые слова' %}

{% endif %}
{% if instance %} {% else %} {% url 'textrank:keywords' as path %}
{% include './_search_form.html' %}
{% trans 'добавить' %} {% include './_is_active_button.html' with path=path %}
{% endif %}
{% if not instance %}
{% url 'textrank:keywords' as keywords_url %} {% for keyword in page.object_list %} {% empty %} {% endfor %} {% if page.object_list %} {% endif %}
{% trans 'Слово' %} {% trans 'Группы и вес' %} {% trans 'Активно' %} {% trans 'Создано' %} {% trans 'Обновлено' %} {% trans 'Редактор' %} ID
{{ keyword.word }} {% for w in keyword.weights.all %} {{ w.group }}={{ w.value }}; {% empty %} --- {% endfor %} {% if keyword.is_active %} {% endif %} {{ keyword.created.isoformat }} {{ keyword.updated.isoformat }} {{ keyword.last_editor|default:'---' }} {{ keyword.id }}
{% trans 'Не найдено ни одной записи.' %}
{% include './_table_pagination.html' %}

{% trans 'Добавить новое слово' %}

{% endif %} {% if instance %}

{% trans 'ID' %}: {{ instance.id }} {% trans 'создано' %}: {{ instance.created.isoformat }} {% trans 'обновлено' %}: {{ instance.updated.isoformat }} {{ instance.last_editor }} {% trans 'всего групп' %}: {{ instance.get_all_groups.count }} {% trans 'активных групп' %}: {{ instance.get_active_groups.count }} {% trans 'неактивных групп' %}: {{ instance.get_inactive_groups.count }}

{% endif %}
{% csrf_token %} {{ form.non_field_errors }} {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
{{ form.word|form_group }}
{{ form.is_active|form_group }}
{% if instance %}

{% trans 'Таблица весов' %}

{% url 'textrank:add_weight' as add_weight_url %} {% for group, weight in instance.get_weight_groups.values %} {% if weight %} {% else %} {% endif %} {% endfor %}
{% trans 'Группа' %} {% trans 'Вес' %} {% trans 'Активен' %} {% trans 'Обновлён' %} {% trans 'Редактор' %}
{{ group }}
{% csrf_token %}
{{ weight.updated.isoformat }} {{ weight.last_editor}}
{% endif %} {% endspaceless %}{% endnewlineless %}{% endblock %} {% block javascript_page %}{% newlineless_javascript %} {% endnewlineless_javascript %}{% endblock %}