commit unversioned files ;)
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user