{% extends 'base.html' %} {% load static %} {# Displays country form and file form in modal window #} {% block scripts %} {# selects #} {# ajax #} {% endblock %} {% block body %} {# Uses multilang.html template for translated fields #}
{% 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.country_id }} {# name #} {% with field='name' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# description #} {% with field='description' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# capital #}
{{ form.capital}} {{ form.capital.errors }}
{# language #}
{{ form.language }} {{ form.language.errors }}
{# population #}
{{ form.population }}млн
{{ form.population.errors }}
{# teritory #}
{{ form.teritory }}км2
{{ form.teritory.errors }}
{# timezone #}
{{ form.timezone }} {{ form.timezone.errors }}
{# phone code #}
{{ form.phone_code }} {{ form.phone_code.errors }}
{# currency #}
{{ form.currency }} {{ form.currency.errors }}
{# big cities #}
{{ form.big_cities }} {{ form.big_cities.errors }}
{# transport #} {% with field='transport' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %}

Файлы

{# button that shows modal window with file form #} Добавить файл {# 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 }}

Визовая информация

{# rules #} {% with field='rules' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# time delivery #}
{{ form.time_delivery }}дней
{{ form.time_delivery.errors }}
{# documents #} {% with field='documents' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %} {# consulate #} {% with field='consulate' form=form languages=languages %} {% include 'admin/forms/multilang.html' %} {% endwith %}

Мета данные

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