0.7.46
fix never mind
This commit is contained in:
@@ -49,7 +49,7 @@
|
|||||||
<div class="methods_transportation_form_filters">
|
<div class="methods_transportation_form_filters">
|
||||||
<div class="title_el_methods_transportation">Откуда забрать посылку</div>
|
<div class="title_el_methods_transportation">Откуда забрать посылку</div>
|
||||||
<select onchange="filters_func_find_route_main(this,'{{ owner_type }}')" class="select_form_filters_find_route el_form_find_route" name="from_place">
|
<select onchange="filters_func_find_route_main(this,'{{ owner_type }}')" class="select_form_filters_find_route el_form_find_route" name="from_place">
|
||||||
<option value="" selected="selected">--не имеет значения--</option>
|
<option value="" selected="selected">не имеет значения</option>
|
||||||
{% for item in route_form.fields.from_place.choices %}
|
{% for item in route_form.fields.from_place.choices %}
|
||||||
<option value="{{ item.0 }}" {% if route_form.initial.from_place == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
<option value="{{ item.0 }}" {% if route_form.initial.from_place == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
<div class="methods_transportation_form_filters">
|
<div class="methods_transportation_form_filters">
|
||||||
<div class="title_el_methods_transportation">Куда доставить посылку</div>
|
<div class="title_el_methods_transportation">Куда доставить посылку</div>
|
||||||
<select onchange="filters_func_find_route_main(this,'{{ owner_type }}')" class="select_form_filters_find_route el_form_find_route" name="to_place">
|
<select onchange="filters_func_find_route_main(this,'{{ owner_type }}')" class="select_form_filters_find_route el_form_find_route" name="to_place">
|
||||||
<option value="" selected="selected">--не имеет значения--</option>
|
<option value="" selected="selected">не имеет значения</option>
|
||||||
{% for item in route_form.fields.to_place.choices %}
|
{% for item in route_form.fields.to_place.choices %}
|
||||||
<option value="{{ item.0 }}" {% if route_form.initial.to_place == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
<option value="{{ item.0 }}" {% if route_form.initial.to_place == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
<div class="cont-el-form-search-carrier last">
|
<div class="cont-el-form-search-carrier last">
|
||||||
<label>test</label>
|
<label>test</label>
|
||||||
<select class="el_form_find_route" name="cargo_type" id="id_cargo_type" {% if route_form.fields.cargo_type.required %} {% endif %}>
|
<select class="el_form_find_route" name="cargo_type" id="id_cargo_type" {% if route_form.fields.cargo_type.required %} {% endif %}>
|
||||||
<option value="" selected="selected">--не имеет значения--</option>
|
<option value="" selected="selected">не имеет значения</option>
|
||||||
{% for item in route_form.fields.cargo_type.choices %}
|
{% for item in route_form.fields.cargo_type.choices %}
|
||||||
<option value="{{ item.0 }}" {% if route_form.initial.cargo_type == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
<option value="{{ item.0 }}" {% if route_form.initial.cargo_type == item.0 %} selected{% endif %}>{{ item.1 }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
Reference in New Issue
Block a user