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/preinfo-list.html

32 lines
905 B
HTML

{% extends 'employee-base.html' %}
{% load static %}
{% block content %}
<table>
<tr>
<th>Preinfo ID</th>
<th>Container №</th>
<th>Container type</th>
<th>Line</th>
<th>Created on</th>
<th>Created by</th>
</tr>
{% for preinfo in preinfos %}
<tr>
<td>{{ preinfo.id }}</td>
<td>{{ preinfo.container_number }}</td>
<td>{{ preinfo.container_type }}</td>
<td>{{ preinfo.line.short_name }}</td>
<td>{{ preinfo.created_on }}</td>
<td>{{ preinfo.created_by.username }}</td>
<td>
{# <a href="{% url 'preinfo_edit' preinfo.id %}">Edit</a> |#}
{# <a href="{% url 'preinfo_delete' preinfo.id %}">Delete</a>#}
</td>
</tr>
{% endfor %}
</table>
{% endblock content %}