{% extends "base.html" %} {% load i18n %} {% block page__menu %}cur{% endblock %} {% block content %}

{% trans 'Страница' %} {{ form.title_ru.value }}

{% trans 'Страницы в Танкере' %}

{% if messages %}
{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %}
{% csrf_token %}
{% block upload_button %}
{% endblock upload_button %} {% block download_button %}
{% endblock download_button %} {% block publish_button %}
{% endblock publish_button %}
{% block slug_field %} {% endblock slug_field %}
{% if form.order.errors %} {{ form.order.errors }} {% endif %}
{% if form.title_ru.errors %} {{ form.title_ru.errors }} {% endif %}
{% block title_en_field %} {{ title_translation }} {% endblock title_en_field %}
{% if form.text_ru.errors %} {{ form.text_ru.errors }} {% endif %}
{% block text_en_field %} {% endblock text_en_field %}
{% endblock content %}