commit unversioned files ;)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{% extends 'employee-base.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block content %}
|
||||
<table>
|
||||
<tr>
|
||||
<th>Status</th>
|
||||
<th>Booking №</th>
|
||||
<th>Vehicles</th>
|
||||
<th>Container number</th>
|
||||
<th>Container type</th>
|
||||
<th>Container count</th>
|
||||
<th>Line</th>
|
||||
<th>Carrier</th>
|
||||
<th>Containers expedited</th>
|
||||
<th>Vehicles left</th>
|
||||
</tr>
|
||||
|
||||
{% for booking in bookings %}
|
||||
<tr>
|
||||
<td>{{ booking.status }}</td>
|
||||
<td>{{ booking.number }}</td>
|
||||
<td>{{ booking.vehicles }}</td>
|
||||
<td>{{ booking.container_number }}</td>
|
||||
<td>{{ booking.container_type }}</td>
|
||||
<td>{{ booking.container_count }}</td>
|
||||
<td>{{ booking.line.short_name }}</td>
|
||||
<td>{{ booking.carrier }}</td>
|
||||
<td>{{ booking.container_expedited_count }}</td>
|
||||
<td>{{ booking.vehicles_left }}</td>
|
||||
<td>
|
||||
{# <a href="{% url 'employee:preinfo_edit' preinfo.id %}">Edit</a> |#}
|
||||
{# <a href="{% url 'employee:preinfo_delete' preinfo.id %}">Delete</a>#}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</table>
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user