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.
 
 
 
 
 
 

39 lines
1.5 KiB

{% load static %}
{% load i18n %}
<div id="pw-subj" class="popup-window pw-subj">
<header class="clearfix">
<div class="pw-title">{% trans 'Тематика' %}</div>
</header>
<div class="pw-body clearfix">
<form class="pw-form" action="#">
<div class="pwf-line subj-checks">
{% for val, choice in theme_search_form.event.field.choices %}
<div class="pwf-field">
<label class="check"><input type="checkbox" class="topicChecks" name="event" value="{{ val }}" />{{ choice }}</label>
</div>
{% endfor %}
</div>
<div class="c-select-box-wrap">
<div class="c-select-box">
<div class="csb-title">{% trans 'Выберите интересующую вас тематику' %}</div>
<div class="csb-selected-items"></div>
<div class="scroll-container csb-menu">
<div class="scroll-content clearfix">
<ul>
{% for val, choice in theme_search_form.theme.field.choices %}
<li><label><input type="checkbox" name="th" value="{{ val }}" />{{ choice }}</label></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
<div class="pwf-buttons-line">
<button type="submit" class="icon-check">{% trans 'применить' %}</button>
</div>
</form>
</div>
</div>