{% extends "base.html" %} {% load i18n range units %} {% block extra_head %} {{form.media}} {% endblock %} {% block content %}

{% trans "Archaeological files" %}

{% trans "Global informations" %}

{% trans "Total:" %} {{dashboard.total_number}}

{% for type in dashboard.types %}

{{type.file_type__label}}{% trans ":"%} {{type.number}}

{% endfor %}
{% for year in dashboard.by_year %}{% endfor %} {% for year in dashboard.by_year %}{% endfor%}
{% trans "By year"%}
{{year.date.year}}
{{year.number}}
{% for month in dashboard.by_month %}{% endfor %} {% for month in dashboard.by_month %}{% endfor%}
{% trans "By month"%}
{{month.date|date:"F Y"|capfirst}}
{{month.number}}

{% trans "Research archaeology" %}

{% trans "Total:" %} {{dashboard.research.total_number}}

{% for year in dashboard.research.by_year %}{% endfor %} {% for year in dashboard.research.by_year %}{% endfor%}
{% trans "By year"%}
{{year.date.year}}
{{year.number}}
{% for month in dashboard.research.by_month %}{% endfor %} {% for month in dashboard.research.by_month %}{% endfor%}
{% trans "By month"%}
{{month.date|date:"F Y"|capfirst}}
{{month.number}}
{% for dpt in dashboard.research.by_dpt %}{% endfor %} {% for dpt in dashboard.research.by_dpt %}{% endfor%}
{% trans "By department"%}
{{dpt.department__label}}
{{dpt.number}}
{% for town in dashboard.research.towns %}{% endfor %} {% for town in dashboard.research.towns %}{% endfor%}
{% trans "Main towns"%}
{{town.town__name}}
{{town.number}}

{% trans "Rescue archaeology" %}

{% trans "Total:" %} {{dashboard.rescue.total_number}}

{% for saisine in dashboard.rescue.saisine %}{% endfor %} {% for saisine in dashboard.rescue.saisine %}{% endfor%}
{% trans "By saisine type"%}
{{saisine.saisine_type__label}}
{{saisine.number}}
{% for act in dashboard.rescue.administrative_act %}{% endfor %} {% for act in dashboard.rescue.administrative_act %}{% endfor%}
{% trans "By administrative act"%}
{{act.act_type__label}}
{{act.number}}
{% for year in dashboard.rescue.by_year %}{% endfor %} {% for year in dashboard.rescue.by_year %}{% endfor%}
{% trans "By year"%}
{{year.date.year}}
{{year.number}}
{% for month in dashboard.rescue.by_month %}{% endfor %} {% for month in dashboard.rescue.by_month %}{% endfor%}
{% trans "By month"%}
{{month.date|date:"F Y"|capfirst}}
{{month.number}}

{% trans "Archaeological files linked to at least one operation:" %} {{dashboard.rescue.with_associated_operation}}

{% trans "Archaeological files linked to at least one operation (%):" %} {{dashboard.rescue.with_associated_operation_percent}}

{% for year in dashboard.rescue.operational_by_year %}{% endfor %} {% for year in dashboard.rescue.operational_by_year %}{% endfor%}
{% trans "Archaeological files linked to at least one operation (%)"%}
{{year.date.year}}
{{year.number}}
{% for dpt in dashboard.rescue.by_dpt %}{% endfor %} {% for dpt in dashboard.rescue.by_dpt %}{% endfor%}
{% trans "By department"%}
{{dpt.department__label}}
{{dpt.number}}
{% for dpt in dashboard.rescue.surface_by_dpt %}{% endfor %} {% for dpt in dashboard.rescue.surface_by_dpt %}{% endfor%}
{% trans "Surface by department (ha)"%}
{{dpt.department__label}}
{{dpt.number|m2_to_ha}}
{% for town in dashboard.rescue.towns %}{% endfor %} {% for town in dashboard.rescue.towns %}{% endfor%}
{% trans "Main towns by number"%}
{{town.town__name}}
{{town.number}}
{% for town in dashboard.rescue.surface_by_town %}{% endfor %} {% for town in dashboard.rescue.surface_by_town %}{% endfor%}
{% trans "Main towns by surface (ha)"%}
{{town.town__name}}
{{town.number|m2_to_ha}}
{% endblock %}