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.
 
 
 
 
 
 

75 lines
3.3 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">{% trans 'Выберите страну из списка' %}</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="active"><label><input type="checkbox" name="place" value="1" />Россия</label>
<ul>
<li><label><input type="checkbox" name="place" value="101" />Москва</label></li>
<li><label><input type="checkbox" name="place" value="102" />Санкт-Петербург</label></li>
<li><label><input type="checkbox" name="place" value="103" />Владивосток</label></li>
<li><label><input type="checkbox" name="place" value="104" />Краснодар</label></li>
</ul>
</li>
<li><label><input type="checkbox" name="place" value="2" />СНГ (исключая Россию)</label></li>
<li><label><input type="checkbox" name="place" value="3" />Европа</label></li>
<li><label><input type="checkbox" name="place" value="4" />Азия</label></li>
<li><label><input type="checkbox" name="place" value="5" />Северная Америка</label></li>
<li><label><input type="checkbox" name="place" value="6" />Южная Америка</label></li>
<li><label><input type="checkbox" name="place" value="7" />Австралия и Океания</label></li>
</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>