{% extends 'base.html' %} {% load static %} {% load i18n %} {# Displays article form #} {% block scripts %} {# selects #} {# ajax #} {% endblock %} {% block body %} {{ form.errors }}
{% csrf_token %}
{% if article %} {% trans "Изменить" %} {% else %} {% trans "Добавить" %} {% endif %}{% trans "статью" %}{% if article %}({% trans "на сайте" %}){% endif %}

{% trans "Основная информация" %}

{# main_title #} {% include 'c_admin/forms/multilang.html' with field='main_title' form=form languages=languages %}
{{ form.publish_date }} {{ form.publish_date.errors }}
{% if not article %}
{{ form.slug }} {{ form.slug.errors }}
{% endif %} {# theme #}
{{ form.theme }} {{ form.theme.errors }}
{# tag #}
{{ form.tag }} {{ form.tag.errors }}
{# exposition #} {% if form.exposition %}
{{ form.exposition }} {{ form.exposition.errors }}
{% endif %} {# conference #} {% if form.conference%}
{{ form.conference }} {{ form.conference.errors }}
{% endif %} {# logo #}
{{ form.logo }} {% if article.logo %} {% endif %} {{ form.logo.errors }}
{# author #}
{{ form.author }} {{ form.author.errors }}
{# preview #} {% include 'c_admin/forms/multilang.html' with field='preview' form=form languages=languages %} {# description #} {% include 'c_admin/forms/multilang.html' with field='description' form=form languages=languages %} {# short description #} {% include 'c_admin/forms/multilang.html' with field='short_description' form=form languages=languages %} {# keywords #} {% include 'c_admin/forms/multilang.html' with field='keywords' form=form languages=languages %} {# title #} {% include 'c_admin/forms/multilang.html' with field='title' form=form languages=languages %} {# descriptions #} {% include 'c_admin/forms/multilang.html' with field='descriptions' form=form languages=languages %}

{% trans "Файлы" %}

{% if article %} {# button that shows modal window with file form #} {% trans "Добавить файл" %} {% else %}

{% trans "Файлы можно добавлять только после введения основных данных" %}

{% endif %} {# this div shows list of files and refreshes when new file added #}
{% include 'file_list.html' with files=files %}
{% trans "id" %} {% trans "Файл" %} {% trans "Имя" %} {% trans "Назначение" %}
{% if form.draft %}
{{ form.draft }} {{ form.draft.errors }}
{% endif %}
{% include 'c_admin/includes/file_form.html' with file_form=file_form object=article %} {% endblock %} {% block bot_scripts %} {% endblock %}