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

{% trans 'Раздел' %} #{{ instance.id }}

{% else %}

{% trans 'Разделы' %}

{% endif %}
{% if instance %} {% else %} {% url 'textrank:topics' as path %}
{% include './_search_form.html' %}
{% trans 'добавить' %} {% include './_is_active_button.html' with path=path %}
{% endif %}
{% if not instance %}
{% for topic in page.object_list %} {% empty %} {% endfor %} {% if page.object_list %} {% endif %}
{% trans 'Название' %} {% trans 'Код' %} {% trans 'Активен' %} {% trans 'Создан' %} {% trans 'Обновлён' %} {% trans 'Редактор' %} ID
{{ topic.name }} {% if topic.description %} {% endif %} {{ topic.code }} {% if topic.is_active %} {% endif %} {{ topic.created.isoformat }} {{ topic.updated.isoformat }} {{ topic.last_editor|default:'---' }} {{ topic.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 }}

{% endif %}
{% csrf_token %} {{ form.non_field_errors }} {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
{{ form.name|form_group }} {{ form.code|form_group }} {{ form.is_active|form_group }}
{{ form.description|form_group }}
{% endspaceless %}{% endnewlineless %}{% endblock %} {% block javascript_page %}{% newlineless_javascript %} {% endnewlineless_javascript %}{% endblock %}