commit unversioned files ;)

This commit is contained in:
2025-07-07 11:43:43 +03:00
parent 844a26a287
commit 3ed72beb6c
12 changed files with 184 additions and 19 deletions
+36
View File
@@ -0,0 +1,36 @@
{% 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 %}