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.
25 lines
1017 B
25 lines
1017 B
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<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> |