{% 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 %}
{% trans "By year"%}
{% for year in dashboard.by_year %}{{year.date.year}} | {% endfor %}
{% for year in dashboard.by_year %}{{year.number}} | {% endfor%}
{% trans "By month"%}
{% for month in dashboard.by_month %}{{month.date|date:"F Y"|capfirst}} | {% endfor %}
{% for month in dashboard.by_month %}{{month.number}} | {% endfor%}
{% trans "Research archaeology" %}
{% trans "Total:" %} {{dashboard.research.total_number}}
{% trans "By year"%}
{% for year in dashboard.research.by_year %}{{year.date.year}} | {% endfor %}
{% for year in dashboard.research.by_year %}{{year.number}} | {% endfor%}
{% trans "By month"%}
{% for month in dashboard.research.by_month %}{{month.date|date:"F Y"|capfirst}} | {% endfor %}
{% for month in dashboard.research.by_month %}{{month.number}} | {% endfor%}
{% trans "By department"%}
{% for dpt in dashboard.research.by_dpt %}{{dpt.department__label}} | {% endfor %}
{% for dpt in dashboard.research.by_dpt %}{{dpt.number}} | {% endfor%}
{% trans "Main towns"%}
{% for town in dashboard.research.towns %}{{town.town__name}} | {% endfor %}
{% for town in dashboard.research.towns %}{{town.number}} | {% endfor%}
{% trans "Rescue archaeology" %}
{% trans "Total:" %} {{dashboard.rescue.total_number}}
{% trans "By saisine type"%}
{% for saisine in dashboard.rescue.saisine %}{{saisine.saisine_type__label}} | {% endfor %}
{% for saisine in dashboard.rescue.saisine %}{{saisine.number}} | {% endfor%}
{% trans "By administrative act"%}
{% for act in dashboard.rescue.administrative_act %}{{act.act_type__label}} | {% endfor %}
{% for act in dashboard.rescue.administrative_act %}{{act.number}} | {% endfor%}
{% trans "By year"%}
{% for year in dashboard.rescue.by_year %}{{year.date.year}} | {% endfor %}
{% for year in dashboard.rescue.by_year %}{{year.number}} | {% endfor%}
{% trans "By month"%}
{% for month in dashboard.rescue.by_month %}{{month.date|date:"F Y"|capfirst}} | {% endfor %}
{% for month in dashboard.rescue.by_month %}{{month.number}} | {% endfor%}
{% 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}}
{% trans "Archaeological files linked to at least one operation (%)"%}
{% for year in dashboard.rescue.operational_by_year %}{{year.date.year}} | {% endfor %}
{% for year in dashboard.rescue.operational_by_year %}{{year.number}} | {% endfor%}
{% trans "By department"%}
{% for dpt in dashboard.rescue.by_dpt %}{{dpt.department__label}} | {% endfor %}
{% for dpt in dashboard.rescue.by_dpt %}{{dpt.number}} | {% endfor%}
{% trans "Surface by department (ha)"%}
{% for dpt in dashboard.rescue.surface_by_dpt %}{{dpt.department__label}} | {% endfor %}
{% for dpt in dashboard.rescue.surface_by_dpt %}{{dpt.number|m2_to_ha}} | {% endfor%}
{% trans "Main towns by number"%}
{% for town in dashboard.rescue.towns %}{{town.town__name}} | {% endfor %}
{% for town in dashboard.rescue.towns %}{{town.number}} | {% endfor%}
{% trans "Main towns by surface (ha)"%}
{% for town in dashboard.rescue.surface_by_town %}{{town.town__name}} | {% endfor %}
{% for town in dashboard.rescue.surface_by_town %}{{town.number|m2_to_ha}} | {% endfor%}
{% endblock %}