InvenTree/InvenTree/templates/barcode_data.html

11 lines
311 B
HTML

{% load i18n %}
{% if instance and instance.barcode_hash %}
<tr>
<td><span class='fas fa-barcode'></span></td>
<td>{% trans "Barcode Identifier" %}</td>
<td {% if instance.barcode_data %}title='{{ instance.barcode_data }}'{% endif %}>
{{ instance.barcode_hash }}
</td>
</tr>
{% endif %}