mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-06 15:28:49 +00:00
22 lines
1.1 KiB
HTML
22 lines
1.1 KiB
HTML
<table class='table table-striped table-condensed po-table' id='po-table' {% if toolbar %}data-toolbar='{{ toolbar }}'{% endif %}>
|
|
<thead>
|
|
<tr>
|
|
<th data-field='company' data-sortable='true' data-searchable='true'>Company</th>
|
|
<th data-field='reference' data-sortable='true' data-searchable='true'>Order Reference</th>
|
|
<th data-field='description' data-sortable='true' data-searchable='true'>Description</th>
|
|
<th data-field='status' data-sortable='true'>Status</th>
|
|
<th data-field='items' data-sortable='true'>Items</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for order in orders %}
|
|
<tr>
|
|
<td>{% include "hover_image.html" with image=order.supplier.image hover=True %}<a href="{{ order.supplier.get_absolute_url }}purchase-orders/">{{ order.supplier.name }}</a></td>
|
|
<td><a href="{% url 'purchase-order-detail' order.id %}">{{ order }}</a></td>
|
|
<td>{{ order.description }}</td>
|
|
<td>{% include "order/order_status.html" %}</td>
|
|
<td>{{ order.lines.count }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |