0.0.177
This commit is contained in:
@@ -170,6 +170,7 @@
|
||||
<div class="methods_transportation_form_filters">
|
||||
<div class="title_el_methods_transportation">Откуда забрать посылку</div>
|
||||
<select class="select_form_filters_find_route" name="from_place">
|
||||
<option value="" selected="selected">--не имеет значения--</option>
|
||||
{% for item in form.fields.from_place.choices %}
|
||||
<option value="{{ item.0 }}">{{ item.1 }}</option>
|
||||
{% endfor %}
|
||||
@@ -181,12 +182,14 @@
|
||||
<div class="methods_transportation_form_filters">
|
||||
<div class="title_el_methods_transportation">Куда доставить посылку</div>
|
||||
<select class="select_form_filters_find_route" name="to_place">
|
||||
<option value="" selected="selected">--не имеет значения--</option>
|
||||
{% for item in form.fields.to_place.choices %}
|
||||
<option value="{{ item.0 }}">{{ item.1 }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div class="methods_transportation_form_filters">
|
||||
<label for="weight">Вес посылки (кг)</label>
|
||||
<div class="range-slider">
|
||||
<input type="text" class="range_slider_form_filters" name="weight" value="{{ form.fields.weight.initial }}" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user