mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
23 lines
758 B
HTML
23 lines
758 B
HTML
<table class='table table-striped table-condensed' id='{{ table_id }}'>
|
|
<tr>
|
|
<th>Part</th>
|
|
<th>Description</th>
|
|
<th>In Stock</th>
|
|
<th>On Order</th>
|
|
<th>Allocted</th>
|
|
<th>Net Stock</th>
|
|
</tr>
|
|
{% for part in parts %}
|
|
<tr>
|
|
<td>
|
|
{% include "hover_image.html" with image=part.image hover=True %}
|
|
<a href="{% url 'part-detail' part.id %}">{{ part.full_name }}</a>
|
|
</td>
|
|
<td>{{ part.description }}</td>
|
|
<td>{{ part.total_stock }}</td>
|
|
<td>{{ part.on_order }}</td>
|
|
<td>{{ part.allocation_count }}</td>
|
|
<td{% if part.net_stock < 0 %} class='red-cell'{% endif %}>{{ part.net_stock }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |