2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

Many improves of the slidies

This commit is contained in:
Oliver Walters
2019-06-18 19:05:09 +10:00
parent 783b8964d1
commit 65a8a30f87
8 changed files with 289 additions and 50 deletions

View File

@ -102,30 +102,40 @@
<div class='col-sm-6'>
<h4>Part Type</h4>
<table class='table table-striped'>
<tr>
<td><b>Template</b></td>
<td>{% include "slide.html" with state=part.is_template %}</td>
<td><i>Part is used as a template for other parts</i></td>
</tr>
<tr>
<td><b>Virtual</b></td>
<td>{% include "slide.html" with state=part.virtual %}</td>
<td><i>Part is virtual (not a physical part)</i></td>
</tr>
<tr>
<td><b>Assembly</b></td>
<td>{% include "slide.html" with state=part.assembly %}</td>
<td><i>This part can be assembled from other parts</i></td>
<td><i>Part can be assembled from other parts</i></td>
</tr>
<tr>
<td><b>Component</b></td>
<td>{% include "slide.html" with state=part.component %}</td>
<td><i>This part can be used in assemblies</i></td>
<td><i>Part can be used in assemblies</i></td>
</tr>
<tr>
<td><b>Trackable</b></td>
<td>{% include "slide.html" with state=part.trackable %}</td>
<td><i>Stock for this part will be tracked by (serial or batch)</i></td>
<td><i>Part stock will be tracked by (serial or batch)</i></td>
</tr>
<tr>
<td><b>Purchaseable</b></td>
<td>{% include "slide.html" with state=part.purchaseable %}</td>
<td><i>This part can be purchased from external suppliers</i></td>
<td><i>Part can be purchased from external suppliers</i></td>
</tr>
<tr>
<td><b>Sellable</b></td>
<td>{% include "slide.html" with state=part.salable %}</td>
<td><i>This part can be sold to customers</i></td>
<td><i>Part can be sold to customers</i></td>
</tr>
</table>
</div>