{% extends "base.html" %} {% block title %}Pottery #{{ pottery.id_rep }}{% endblock %} {% macro row(label, val) %}
{{ label }}: {{ val if val is not none else '' }}
{% endmacro %} {% block content %}

Pottery #{{ pottery.id_rep }} {{ pottery.sito }}{% if pottery.id_number %} · ID {{ pottery.id_number }}{% endif %}

Edit
{{ _('Media') }}
{{ _('Loading...') }}

Description

{{ row("Site", pottery.sito) }}{{ row("Area", pottery.area) }}{{ row("US", pottery.us) }}{{ row("Sector", pottery.sector) }} {{ row("Year", pottery.anno) }}{{ row("Box", pottery.box) }}{{ row("Bag", pottery.bag) }}{{ row("ID number", pottery.id_number) }} {{ row("Material", pottery.material) }}{{ row("Form", pottery.form) }}{{ row("Specific form", pottery.specific_form) }}{{ row("Specific shape", pottery.specific_shape) }}

Technical

{{ row("Fabric", pottery.fabric) }}{{ row("Ware", pottery.ware) }}{{ row("Munsell", pottery.munsell) }}{{ row("Percent", pottery.percent) }} {{ row("Surface treat.", pottery.surf_trat) }}{{ row("Wheel-made", pottery.wheel_made) }}{{ row("Ext deco", pottery.exdeco) }}{{ row("Int deco", pottery.intdeco) }}
{% if pottery.descrip_ex_deco or pottery.descrip_in_deco %}
{% if pottery.descrip_ex_deco %}
Ext deco desc.: {{ pottery.descrip_ex_deco }}
{% endif %} {% if pottery.descrip_in_deco %}
Int deco desc.: {{ pottery.descrip_in_deco }}
{% endif %}
{% endif %}

Measurements

{{ row("Qty", pottery.qty) }}{{ row("Diam max", pottery.diametro_max) }}{{ row("Diam rim", pottery.diametro_rim) }} {{ row("Diam bottom", pottery.diametro_bottom) }}{{ row("Diam height", pottery.diametro_height) }}{{ row("Diam preserved", pottery.diametro_preserved) }}
{% if pottery.note %}

Notes

{{ pottery.note }}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}