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.
25 lines
682 B
HTML
25 lines
682 B
HTML
{% extends 'list-crud.html' %}
|
|
{% load static %}
|
|
|
|
{% block table_header %}
|
|
<th style="display: none;">Select</th>
|
|
<th>Preinfo №</th>
|
|
<th>Container №</th>
|
|
<th>Container type</th>
|
|
<th>Line</th>
|
|
<th>Created on</th>
|
|
<th>Created by</th>
|
|
<th>Status</th>
|
|
{% endblock table_header %}
|
|
|
|
{% block table_data %}
|
|
<td>{{ object.id }}</td>
|
|
<td>{{ object.container_number }}</td>
|
|
<td>{{ object.container_type }}</td>
|
|
<td>{{ object.line.short_name }}</td>
|
|
<td>{{ object.created_on }}</td>
|
|
<td>{{ object.created_by.username }}</td>
|
|
<td>{{ object.received|yesno:"Received,Pending" }}</td>
|
|
{% endblock %}
|
|
|