You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
1.2 KiB

{% extends 'base.html' %}
{% block body %}
<form method="post" class="form-horizontal" enctype="multipart/form-data" name="form1" id="form1"> {% csrf_token %}
{% with field='exposition_title' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% with field='exposition_descriptions' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% with field='exposition_keywords' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% if form.city_title %}
{% with field='city_title' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% endif %}
{% if form.city_descriptions %}
{% with field='city_descriptions' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% endif %}
{% if form.city_keywords %}
{# template hall placeexposition #}
{% with field='city_keywords' form=form languages=languages %}
{% include 'c_admin/forms/multilang.html' %}
{% endwith %}
{% endif %}
</form>
{% endblock %}