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

{{ site.get('sito', 'Sito') }}

Esporta PDF Indietro
Dettagli Sito

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

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

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

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

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

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

Descrizione:

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

{% endif %}
Unità Stratigrafiche ({{ us_list|length }})
Nuova US
{% if us_list %}
{% for us in us_list[:10] %} {% endfor %}
US Area Descrizione Anno Scavo
{{ us.get('us') }} {{ us.get('area') or '-' }} {{ us.get('d_stratigrafica') or '-' }} {{ us.get('anno_scavo') or '-' }}
{% if us_list|length > 10 %}

Mostrando 10 di {{ us_list|length }} US. Vedi tutte

{% endif %}
{% else %}

Nessuna unità stratigrafica registrata.

{% endif %}
Inventario Materiali ({{ inventory_list|length }})
Nuovo Reperto
{% if inventory_list %}
{% for item in inventory_list[:10] %} {% endfor %}
N. Inv. Tipo Definizione US
{{ item.get('numero_inventario') }} {{ item.get('tipo_reperto') or '-' }} {{ item.get('definizione') or '-' }} {{ item.get('us') or '-' }}
{% if inventory_list|length > 10 %}

Mostrando 10 di {{ inventory_list|length }} reperti. Vedi tutti

{% endif %}
{% else %}

Nessun reperto registrato.

{% endif %}
{% endblock %}