mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-21 10:55:54 +00:00
28 lines
801 B
HTML
28 lines
801 B
HTML
{% extends "collapse.html" %}
|
|
|
|
{% block collapse_title %}
|
|
<b>{{ title }}</b> - {{ builds | length }}
|
|
{% endblock %}
|
|
|
|
{% block collapse_content %}
|
|
<table class='table table-striped table-condensed build-table' id='build-table-{{collapse_id}}' data-toolbar='#button-toolbar'>
|
|
<thead>
|
|
<tr>
|
|
<th>Build</th>
|
|
<th>Part</th>
|
|
<th>Quantity</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for build in builds %}
|
|
<tr>
|
|
<td><a href="{% url 'build-detail' build.id %}">{{ build.title }}</a></td>
|
|
<td><a href="{% url 'part-build' build.part.id %}">{{ build.part.name }}</a></td>
|
|
<td>{{ build.quantity }}</td>
|
|
<td>{% include "build_status.html" with build=build %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %} |