Files
account_store/templates/widgets/w_route_info.html
2023-07-29 17:50:32 +03:00

72 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% for route in routes %}
<div class="my_route">
<div class="route_info">
<div class="route_info_about">
<span>
Тип:{{ route.get_cargo_type_display }}
</span>
<span>
Вес:{{ route.weight }} кг
</span>
<span>
{{ route.get_type_transport_display }}
</span>
</div>
<div class="route_info_point">
{{ route.from_country.name }}/{{ route.from_city.name }}
<br>
{{ route.to_country.name }}/{{ route.to_city.name }}
</div>
<div class="route_info_date">
Отправка: {{route.departure_DT }}
Прибытие: {{route.arrival_DT }}
</div>
<div class="route_info_ft_place">
Откуда заберёт:{{ route.from_place }}
Куда доставит:{{ route.to_place }}
</div>
</div>
<div class="route_contact">
<h2>Контакты перевозчика:</h2>
<div class="route_contact_name">
{{ route.owner.last_name }} {{ route.owner.first_name }}
</div>
<div class="route_contact_phone_email">
{{ route.phone }}
<br>
{{ route.extra_phone }}
<br>
{{ route.owner.email }}
</div>
<div class="button_edit_route">
<button
id="edit_route">
Редактировать
</button>
</div>
<div class="button_remove_route">
<button
onclick="confirmRemove(this)"
id="remove_route">
Удалить
</button>
</div>
</div>
</div>
{% endfor %}