diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html index 1bc4b9b967..fc9795b6e0 100644 --- a/InvenTree/part/templates/part/detail.html +++ b/InvenTree/part/templates/part/detail.html @@ -30,6 +30,15 @@ <td>{% trans "Description" %}</td> <td>{{ part.description }}{% include "clip.html"%}</td> </tr> + {% if part.category %} + <tr> + <td><span class='fas fa-sitemap'></span></td> + <td>{% trans "Category" %}</td> + <td> + <a href='{% url "category-detail" part.category.pk %}'>{{ part.category }}</a> + </td> + </tr> + {% endif %} {% if part.IPN %} <tr> <td><span class='fas fa-tag'></span></td>