{% extends 'base.html' %} {% load static %} {% block scripts %} {# google map не забыть скачать скрипты на локал #} {# selects #} {# ajax #} {% endblock %} {% block body %}
{% csrf_token %}
{% if obj_id %} Изменить {% else %} Добавить {% endif %}конференц зал

Основная информация

{# Hidden input uses for comparing with TmpFile objects #} {{ form.key }} {# Hidden input uses in clean method for checking url #} {{ form.place_conference_id }} {# name #} {% with field='name' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# type #}
{{ form.type}} {{ form.type.errors }}
{# main_title #} {% with field='main_title' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# country #}
{{ form.country}} {{ form.country.errors }}
{# city #}
{{ form.city}} {{ form.city.errors }}

Дополнительная информация

{# description #} {% with field='description' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# address #}
{{ form.address }} {{ form.address.errors }}
{# adress #} {% with field='adress' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# phone #}
{{ form.phone}} {{ form.phone.errors }}
{# fax #}
{{ form.fax}} {{ form.fax.errors }}
{# web_page #}
{{ form.web_page}} {{ form.web_page.errors }}
{# email #}
{{ form.email}} {{ form.email.errors }}
{# video_link #}
{{ form.video_link }} {{ form.video_link.errors }}

Основная информация

{# foundation_year #}
{{ form.foundation_year}} {{ form.foundation_year.errors }}
{# total_year_action #} {% with field='total_year_action' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# total_capacity #}
{{ form.total_capacity}} {{ form.total_capacity.errors }}
{# amount_halls #}
{{ form.amount_halls}} {{ form.amount_halls.errors }}
{# exposition_hall #}
{{ form.exposition_hall}} {{ form.exposition_hall.errors }}
{# exp_hall_area #}
{{ form.exp_hall_area}} {{ form.exp_hall_area.errors }}

Вместимость залов

{% if form.hall_capacity_ru %} {# hall_capacity #} {% with field='hall_capacity' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %}

%(name)s: Название зала

%(number)s: Номер зала

%(capacity)s: Вместимость зала


{% endif %} {% if formset.errors %}
{% for form in formset.forms %} {% for key, value in form.errors.items %}

{{ value }}

{% endfor %} {% endfor %}
{% endif %} {# formset of halls #} {{ formset.management_form }}
{% for item in formset.forms %} {% endfor %}
Название зала Номер Вместимость

Добавить зал

Файлы

{# this div shows list of files and refreshes when new file added #}
{% for file in files %} {% endfor %}
id Файл Имя Назначение
{{ file.id }} {{ file.file_name }} {{ file.purpose }}
{# button that shows modal window with file form #}

Добавить файл

Услуги

{# wifi #}
{{ form.wifi}} {{ form.wifi.errors }}
{# multimedia_equipment #}
{{ form.multimedia_equipment}} {{ form.multimedia_equipment.errors }}
{# conference_call #}
{{ form.conference_call}} {{ form.conference_call.errors }}
{# translate_equipment #}
{{ form.translate_equipment }} {{ form.translate_equipment.errors }}
{# banquet_hall #}
{{ form.banquet_hall}} {{ form.banquet_hall.errors }}
{# catering #}
{{ form.catering}} {{ form.catering.errors }}
{# hotel #}
{{ form.hotel}} {{ form.hotel.errors }}

Мета даные

{# keywords #} {% with field='keywords' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# title #} {% with field='title' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# descriptions #} {% with field='descriptions' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %}
{# modal window #} {% endblock %}