country_n_city_str
This commit is contained in:
SDE
2023-09-05 16:17:01 +03:00
parent 52a0105806
commit 704c44a636
3 changed files with 31 additions and 8 deletions

View File

@@ -11,12 +11,12 @@
<div class="clear_both"></div>
</div>
<div class="from-to-country-container-carrier">
<div class="from-to-country-text left fl-left txt-al-right" title="{% if route.from_country %}{{ route.from_country }}{% else %}Неизвестно{% endif %} / {% if route.from_city %}{{ route.from_city }}{% else %}Неизвестно{% endif %}">
{% if route.from_country %}{{ route.from_country }}{% else %}Неизвестно{% endif %} / {% if route.from_city %}{{ route.from_city }}{% else %}Неизвестно{% endif %}
<div class="from-to-country-text left fl-left txt-al-right" title="{{ route.from_country_n_city_str }}">
{{ route.from_country_n_city_str }}
</div>
<div class="splitter-from-to-country"></div>
<div class="from-to-country-text right fl-right txt-al-left" title="{% if route.to_country %}{{ route.to_country }}{% else %}Неизвестно{% endif %} / {% if route.to_city %}{{ route.to_city }}{% else %}Неизвестно{% endif %}">
{% if route.to_country %}{{ route.to_country }}{% else %}Неизвестно{% endif %} / {% if route.to_city %}{{ route.to_city }}{% else %}Неизвестно{% endif %}
<div class="from-to-country-text right fl-right txt-al-left" title="{{ route.to_country_n_city_str }}">
{{ route.to_country_n_city_str }}
</div>
</div>
{% include "small_INCLUDES/carrier_card/inf_about_moving.html" %}

View File

@@ -31,12 +31,12 @@
</div>
<div class="from-to-country-container-carrier">
<div class="from-to-country-text left fl-left txt-al-right" title="{% if route.from_country %}{{ route.from_country }}{% else %}Неизвестно{% endif %} / {% if route.from_city %}{{ route.from_city }}{% else %}Неизвестно{% endif %}">
{% if route.from_country %}{{ route.from_country }}{% else %}Неизвестно{% endif %} / {% if route.from_city %}{{ route.from_city }}{% else %}Неизвестно{% endif %}
<div class="from-to-country-text left fl-left txt-al-right" title="{{ route.from_country_n_city_str }}">
{{ route.from_country_n_city_str }}
</div>
<div class="splitter-from-to-country"></div>
<div class="from-to-country-text right fl-right txt-al-left" title="{% if route.to_country %}{{ route.to_country }}{% else %}Неизвестно{% endif %} / {% if route.to_city %}{{ route.to_city }}{% else %}Неизвестно{% endif %}">
{% if route.to_country %}{{ route.to_country }}{% else %}Неизвестно{% endif %} / {% if route.to_city %}{{ route.to_city }}{% else %}Неизвестно{% endif %}
<div class="from-to-country-text right fl-right txt-al-left" title="{{ route.to_country_n_city_str }}">
{{ route.to_country_n_city_str }}
</div>
</div>
{% include "small_INCLUDES/carrier_card/inf_about_moving.html" %}