0.0.47 add checkbox
This commit is contained in:
34
templates/widgets/w_route_info.html
Normal file
34
templates/widgets/w_route_info.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user