{% extends "base.html" %} {% block title %}{{ site.get('sito', 'Sito') }}{% endblock %} {% block content %}
{{ _('Site Details') }}

{{ _('Country') }}: {{ site.get('nazione') or '-' }}

{{ _('Region') }}: {{ site.get('regione') or '-' }}

{{ _('Province') }}: {{ site.get('provincia') or '-' }}

{{ _('Municipality') }}: {{ site.get('comune') or '-' }}

{{ _('Definition') }}: {{ site.get('definizione_sito') or '-' }}

{% if site.get('descrizione') %}

{{ _('Description') }}:

{{ site.get('descrizione') }}

{% endif %}
{{ _('Stratigraphic Units') }} ({{ us_list|length }})
{{ _('New US') }}
{% if us_list %}
{% for us in us_list[:10] %} {% endfor %}
{{ _('US') }} {{ _('Area') }} {{ _('Description') }} {{ _('Excavation Year') }}
{{ us.get('us') }} {{ us.get('area') or '-' }} {{ us.get('d_stratigrafica') or '-' }} {{ us.get('anno_scavo') or '-' }}
{% if us_list|length > 10 %}

{{ _('Showing 10 of %(total)s US.', total=us_list|length) }} {{ _('View all') }}

{% endif %}
{% else %}

{{ _('No stratigraphic units recorded.') }}

{% endif %}
{{ _('Material Inventory') }} ({{ inventory_list|length }})
{{ _('New Artifact') }}
{% if inventory_list %}
{% for item in inventory_list[:10] %} {% endfor %}
{{ _('Inv. No.') }} {{ _('Type') }} {{ _('Definition') }} {{ _('US') }}
{{ item.get('numero_inventario') }} {{ item.get('tipo_reperto') or '-' }} {{ item.get('definizione') or '-' }} {{ item.get('us') or '-' }}
{% if inventory_list|length > 10 %}

{{ _('Showing 10 of %(total)s artifacts.', total=inventory_list|length) }} {{ _('View all') }}

{% endif %}
{% else %}

{{ _('No artifacts recorded.') }}

{% endif %}
{{ _('View Harris Matrix') }}
{% endblock %}