{% extends "helfertool/admin.html" %} {% load i18n bootstrap4 icons inventory %} {% block admincontent %}
{% icon "plus" %} {% trans "New item" %}
{% if items %}{% trans "Name" %} | {% trans "Barcode" %} | {% trans "Comment" %} | |
---|---|---|---|
{{ item.name }} | {{ item.barcode }} | {{ item.comment|truncatechars:20|linebreaks }} |
{% icon "pencil-alt" %}
{% trans "Edit" %}
{% icon "trash-alt" %} {% trans "Delete" %} |
{% trans "There are no items." %}
{% endif %} {% endblock %}