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.
 
 
 
 
 
 

38 lines
1.4 KiB

{% load static %}
{% load i18n %}
{% load template_filters %}
<div class="popup-window r_cities">
<header>
<div class="title">{% trans 'Города России' %}</div>
</header>
<div class="body">
<div class="themes_wrapper">
<div class="scroll-container">
<div class="scroll-content">
<div class="topics-list">
<ul class="modal_checkboxes">
{% for pk, name in r_cities %}
<li class="level1">
<label>
<input type="checkbox" class="hidden_checkbox" name="r_cities" id="" value="{{ pk }}"/>
<span class="custom_checkbox"></span>
<span class="label">{{ name }}</span>
</label>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="wait-ajax" style=""></div>
</div>
<div class="buttons_block">
<button class="icon-check modal-approve" type="button">{% trans 'Сохранить' %}</button>
<button class="gray modal-clear" type="button">{% trans 'Очистить' %}</button>
</div>
</div>
</div>