{% extends "base.html" %} {% block title %}{{ _('Material Inventory') }}{% endblock %} {% block content %}

{{ _('Material Inventory') }}

{{ _('Export PDF') }} {{ _('New Artifact') }}
{% if inventory_list %}
{% for item in inventory_list %} {% endfor %}
{{ _('Inventory No.') }} {{ _('Site') }} {{ _('Type') }} {{ _('Definition') }} US {{ _('Weight (g)') }} {{ _('Actions') }}
{{ item.numero_inventario }} {{ item.sito }} {{ item.tipo_reperto or '-' }} {{ item.definizione or '-' }} {{ item.us or '-' }} {{ item.peso or '-' }} {{ _('Edit') }}
{% for item in inventory_list %}
{{ _('Inv.') }} {{ item.numero_inventario }} - {{ item.sito }}
{% if item.tipo_reperto %}
{{ _('Artifact Type') }}
{{ item.tipo_reperto }}
{% endif %} {% if item.definizione %}
{{ _('Definition') }}
{{ item.definizione }}
{% endif %} {% if item.us %}
US
{{ item.us }}
{% endif %} {% if item.peso %}
{{ _('Weight') }}
{{ item.peso }} g
{% endif %}
{% endfor %}

{{ _('Total') }}: {{ total }} {{ _('artifacts') }}

{% else %}
{{ _('No artifacts found.') }}
{% endif %}
{% endblock %}