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.
116 lines
6.2 KiB
116 lines
6.2 KiB
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<div id="pw-place" class="popup-window pw-place">
|
|
<header class="clearfix">
|
|
<div class="pw-title">{% trans 'Место' %}</div>
|
|
</header>
|
|
<div class="pw-body clearfix">
|
|
<form class="pw-form" action="#">
|
|
<div class="c-select-box-wrap">
|
|
<div class="c-select-box places">
|
|
<div class="csb-title">
|
|
<input type="text" class="filter-input" autocomplete="on" placeholder="Введите или выберите страну из списка" />
|
|
<!--
|
|
<div class="ac-custom-message" id="ac_animes"><span>Этот регион уже выбран.</span></div>
|
|
-->
|
|
<!--Введите или выберите страну из списка-->
|
|
</div>
|
|
<div class="csb-selected-items"></div>
|
|
<div class="scroll-container csb-menu">
|
|
<div class="scroll-content clearfix">
|
|
<div class="places-list">
|
|
<ul>
|
|
<li class="level1"><label><input type="checkbox" name="place" value="c10" /><span class="hidden">Россия</span></label><a href="#">Россия</a>
|
|
<ul>
|
|
<li class="level2"><label><input type="checkbox" name="place" value="c100" /><span class="hidden">Область 1</span></label><a href="#">Область 1</a>
|
|
<ul>
|
|
<li><label><input type="checkbox" name="place" value="c101" />Москва</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c102" />Санкт-Петербург</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c103" />Владивосток</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c104" />Краснодар</label></li>
|
|
</ul>
|
|
</li>
|
|
<li class="level2"><label><input type="checkbox" name="place" value="c200" /><span class="hidden">Область 2</span></label><a href="#">Область 2</a>
|
|
<ul>
|
|
<li><label><input type="checkbox" name="place" value="c201" />Чугуйск</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c202" />Новочебоксарск</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c203" />Киров</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c204" />Надым</label></li>
|
|
</ul>
|
|
</li>
|
|
<li class="level2"><label><input type="checkbox" name="place" value="c300" /><span class="hidden">Область 3</span></label><a href="#">Область 3</a>
|
|
<ul>
|
|
<li><label><input type="checkbox" name="place" value="c301" />Нягань</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c302" />Вятка</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c303" />Челябинск</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c304" />Сколково</label></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li class="level1"><label><input type="checkbox" name="place" value="c400" /><span class="hidden">СНГ (исключая Россию)</span></label><a href="#">СНГ (исключая Россию)</a>
|
|
<ul>
|
|
<li><label><input type="checkbox" name="place" value="c401" />Киев</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c402" />Харьков</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c403" />Донецк</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c404" />Львов</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c405" />Минск</label></li>
|
|
</ul>
|
|
</li>
|
|
<li class="level1"><label><input type="checkbox" name="place" value="c500" /><span class="hidden">Европа</span></label><a href="#">Европа</a>
|
|
<ul>
|
|
<li><label><input type="checkbox" name="place" value="c501" />Лондон</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c502" />Берлин</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c503" />Париж</label></li>
|
|
<li><label><input type="checkbox" name="place" value="c504" />Брюсель</label></li>
|
|
</ul>
|
|
</li>
|
|
{% for value, text in place_search_form.r.field.choices %}
|
|
<li class="level1"><label><input type="checkbox" name="r" value="{{ value }}" />{{ text }}</label></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="q-sel">
|
|
<div class="q-sel-title">{% trans 'Быстрый выбор' %}:</div>
|
|
<ul>
|
|
<li><a href="#">Москва</a></li>
|
|
<li><a href="#">Санкт-Петербург</a></li>
|
|
</ul>
|
|
|
|
<a class="clear" href="#">{% trans 'Сбросить выбранные регионы' %}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="pwf-buttons-line">
|
|
|
|
<button type="submit" class="icon-check">{% trans 'применить' %}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="pw-period" class="popup-window pw-period">
|
|
<header class="clearfix">
|
|
<div class="pw-title">{% trans 'Период' %}</div>
|
|
</header>
|
|
<div class="pw-body clearfix">
|
|
<form class="pw-form" action="#">
|
|
<div class="pwf-line period">
|
|
<div class="pwf-field">
|
|
<label for="dateFrom">{% trans 'с' %}</label>
|
|
<input type="text" class="date" id="dateFrom" name="dateFrom" placeholder="дд.мм.гггг" />
|
|
</div>
|
|
<div class="pwf-field">
|
|
<label for="dateTo">{% trans 'по' %}</label>
|
|
<input type="text" class="date" id="dateTo" name="dateTo" placeholder="дд.мм.гггг" />
|
|
</div>
|
|
</div>
|
|
<div class="pwf-buttons-line">
|
|
<button type="submit" class="icon-check">{% trans 'применить' %}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div> |