2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-14 15:41:10 +00:00

Add 'keywords' field to Part

- Shows up in search results
This commit is contained in:
Oliver Walters
2019-05-14 17:23:20 +10:00
parent 7447561f77
commit 02033c2157
6 changed files with 43 additions and 13 deletions

View File

@@ -35,16 +35,22 @@
<td>Part name</td>
<td>{{ part.full_name }}</td>
</tr>
<tr>
<td>Description</td>
<td>{{ part.description }}</td>
</tr>
{% if part.IPN %}
<tr>
<td>IPN</td>
<td>{{ part.IPN }}</td>
</tr>
{% endif %}
<tr>
<td>Description</td>
<td>{{ part.description }}</td>
</tr>
{% if part.keywords %}
<tr>
<td>Keywords</td>
<td>{{ part.keywords }}</td>
</tr>
{% endif %}
{% if part.URL %}
<tr>
<td>URL</td>