0.0.48 upd сыы

This commit is contained in:
2023-07-27 15:01:09 +03:00
parent d90d2ef671
commit 65e098e6a7
2 changed files with 40 additions and 15 deletions

View File

@@ -1074,7 +1074,18 @@ div.from_to_place>div>select{
.my_route{
display: block ruby;
margin: 15px 5px;
background-color: White;
border-radius: 10px;
margin: 2% 0 0 0;
box-shadow: 0px -1px 10px 0px #C6C7CB33;
}
.route_info{
border-style: inset;
border-width: 1px;
border-color: transparent #F8F8F8 transparent transparent;
}
/*my routes*/

View File

@@ -4,27 +4,41 @@
{{ route.get_cargo_type_display }}
{{ route.weight }}
{{ route.get_type_transport_display }}
<div class="route_info_point">
{{ route.from_country }}/{{ route.from_city }}
{{ route.to_country }}/{{ route.to_city }}
</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 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">
<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>