2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 11:10:54 +00:00

fix templates

This commit is contained in:
Matthias
2022-05-02 22:41:24 +02:00
parent 8f3899ffe6
commit e7b189ba29
8 changed files with 35 additions and 7 deletions

View File

@ -379,7 +379,11 @@
<tr>
<td><span class='fas fa-building'></span></td>
<td>{% trans "Supplier" %}</td>
<td><a href="{% url 'company-detail' item.supplier_part.supplier.id %}">{{ item.supplier_part.supplier.name }}</a></td>
<td>
{% if item.supplier_part.supplier %}
<a href="{% url 'company-detail' item.supplier_part.supplier.id %}">{{ item.supplier_part.supplier.name }}</a>
{% endif %}
</td>
</tr>
<tr>
<td><span class='fas fa-shapes'></span></td>