0.0.47 add checkbox

This commit is contained in:
2023-07-27 13:56:15 +03:00
parent 1cf3041e95
commit e420dc17f2
11 changed files with 181 additions and 92 deletions

View File

@@ -0,0 +1,34 @@
{% for route in routes %}
<div class="my_route">
<div class="route_info">
{{ 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>
<div class="route_contact">
Контакты перевозчика:
{{ route.owner.last_name }} {{ route.owner.first_name }}
{{ route.phone }}
{{ route.extra_phone }}
{{ route.owner.email }}
</div>
</div>
{% endfor %}