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{ .my_route{
display: block ruby; 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*/ /*my routes*/

View File

@@ -5,8 +5,9 @@
{{ route.weight }} {{ route.weight }}
{{ route.get_type_transport_display }} {{ route.get_type_transport_display }}
<div class="route_info_point"> <div class="route_info_point">
{{ route.from_country }}/{{ route.from_city }} {{ route.from_country.name }}/{{ route.from_city.name }}
{{ route.to_country }}/{{ route.to_city }} <br>
{{ route.to_country.name }}/{{ route.to_city.name }}
</div> </div>
<div class="route_info_date"> <div class="route_info_date">
Отправка: {{route.departure_DT }} Отправка: {{route.departure_DT }}
@@ -19,12 +20,25 @@
</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 }} {{ route.owner.last_name }} {{ route.owner.first_name }}
</div>
<div class="route_contact_phone_email">
{{ route.phone }} {{ route.phone }}
<br>
{{ route.extra_phone }} {{ route.extra_phone }}
<br>
{{ route.owner.email }} {{ route.owner.email }}
</div>