You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_django/templates/employee/containers-list.html

36 lines
1.0 KiB
HTML

{% extends 'employee-base.html' %}
{% load static %}
{% block content %}
<table>
<tr>
<th>Container №</th>
<th>Container type</th>
<th>Line</th>
<th>Received on</th>
<th>Position</th>
<th>Swept</th>
<th>Washed</th>
<th>Booking</th>
</tr>
{% for container in containers %}
<tr>
<td>{{ container.number }}</td>
<td>{{ container.container_type }}</td>
<td>{{ container.line.short_name }}</td>
<td>{{ container.received_on }}</td>
<td>{{ container.position }}</td>
<td>{{ container.swept }}</td>
<td>{{ container.washed }}</td>
<td>{{ container.booking.id }}</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 %}