{% extends 'base.html' %} {% load static %} {# Displays organiser form and file form in modal window #} {% block scripts %} {# google map не забыть скачать скрипты на локал #} {# selects #} {% endblock %} {% block body %} {# Uses multilang.html template for translated fields #}
{% csrf_token %}
{% if object %} Изменить {% else %} Добавить {% endif %}организатора

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

{# name #} {% with field='name' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# specialization #} {% with field='specialization' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# country #}
{{ form.country }} {{ form.country.errors }}
{# city #}
{{ form.city }} {{ form.city.errors }}
{# theme #}
{{ form.theme }} {{ form.theme.errors }}
{# tag #}
{{ form.tag }} {{ form.tag.errors }}
{# address #}
{{ form.address }} {{ form.address.errors }}
{# address_inf #} {% with field='address_inf' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# logo #}
{{ form.logo }} {{ form.logo.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 }}
{# foundation #}
{{ form.foundation }} {{ form.foundation.errors }}
{# events_number #}
{{ form.events_number }} {{ form.events_number.errors }}
{# social #}
{{ form.social }} {{ form.social.errors }}
{# staff_number #}
{{ form.staff_number }} {{ form.staff_number.errors }}
{# place_exposition #}
{{ form.place_exposition }} {{ form.place_exposition.errors }}
{# place_conference #}
{{ form.place_conference }} {{ form.place_conference.errors }}
{# description #} {% with field='description' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# representation #} {% with field='representation' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# url #}
{{ form.url }} {{ form.url.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 %}
{% endblock %}