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

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

{# Hidden input uses for comparing with TmpFile objects #} {{ form.key }} {# name #} {% with field='name' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# type #}
{{ form.type}} {{ form.type.errors }}
{# country #}
{{ form.country}} {{ form.country.errors }}
{# city #}
{{ form.city}} {{ form.city.errors }}
{# 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 }}

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

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

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

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

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


{# formset of halls #} {{ formset.management_form }}
{% for form in formset.forms %} {% endfor %}
Название зала Номер Вместимость
{{ form.name }} {{ form.number }} {{ form.capacity }} Удалить

Добавить зал

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

{# description #} {% with field='description' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# adress #} {% with field='adress' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# latitude #}
{{ form.latitude}} {{ form.latitude.errors }}
{# longitude #}
{{ form.longitude}} {{ form.longitude.errors }}
{# 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 }}

Файлы

{# 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 }} {{ file.file_type }}
{# 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 %}