From 2e15f5fd3525120d22336faf10e960050aaefb67 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 16 Nov 2022 18:05:49 +0100 Subject: Remove deadcode (old dashboards) - clean css --- .../ishtar/dashboards/dashboard_file.html | 251 --------------------- 1 file changed, 251 deletions(-) delete mode 100644 archaeological_files/templates/ishtar/dashboards/dashboard_file.html (limited to 'archaeological_files/templates') diff --git a/archaeological_files/templates/ishtar/dashboards/dashboard_file.html b/archaeological_files/templates/ishtar/dashboards/dashboard_file.html deleted file mode 100644 index 127c9f2f8..000000000 --- a/archaeological_files/templates/ishtar/dashboards/dashboard_file.html +++ /dev/null @@ -1,251 +0,0 @@ -{% extends "base.html" %} -{% load i18n range units humanize %} -{% block extra_head %} -{{form.media}} -{% endblock %} -{% block content %} -

{% trans "Archaeological files" %}

-
- -

{% trans "Global informations" %}

-
- - - - - - {% for type in dashboard.types %} - - - - - {% endfor %} -
{% trans "Total" %}{{dashboard.total_number|intcomma}}
{{type.file_type__label}}{{type.number|intcomma}}
- -
-

{% trans "by year"%}

-
- - - {% for year in dashboard.by_year %}{% endfor %} - - - {% for year in dashboard.by_year %}{% endfor%} - -
{% if year.date.year %}{{year.date.year}}{% else %}{% trans "no year" %}{% endif %}
{{year.number|intcomma}}
-
-
- -
-

{% trans "by month"%}

- - - {% for month in dashboard.by_month %}{% endfor %} - - - {% for month in dashboard.by_month %}{% endfor%} - -
{{month.date|date:"N Y"|capfirst}}
{{month.number|intcomma}}
-
- -
- -

{% trans "Research archaeology" %}

-
-

{{dashboard.research.total_number|intcomma}}

-
-

{% trans "by year"%}

- - - {% for year in dashboard.research.by_year %}{% endfor %} - - - {% for year in dashboard.research.by_year %}{% endfor%} - -
{{year.date.year}}
{{year.number|intcomma}}
-
- -
-

{% trans "by month"%}

- - - {% for month in dashboard.research.by_month %}{% endfor %} - - - {% for month in dashboard.research.by_month %}{% endfor%} - -
{{month.date|date:"F Y"|capfirst}}
{{month.number|intcomma}}
-
- -
-

{% trans "by department"%}

- - - {% for dpt in dashboard.research.by_dpt %}{% endfor %} - - - {% for dpt in dashboard.research.by_dpt %}{% endfor%} - -
{{dpt.department__label}}
{{dpt.number|intcomma}}
-
- -
-

{% trans "main towns"%}

-
- - - {% for town in dashboard.research.towns %}{% endfor %} - - - {% for town in dashboard.research.towns %}{% endfor%} - -
{{town.town__name}}
{{town.number|intcomma}}
-
-
- -
- -

{% trans "Rescue archaeology" %}

-
-

{{dashboard.rescue.total_number|intcomma}}

- -
-

{% trans "by saisine type"%}

-
- - - {% for saisine in dashboard.rescue.saisine %}{% endfor %} - - - {% for saisine in dashboard.rescue.saisine %}{% endfor%} - -
{{saisine.saisine_type__label}}
{{saisine.number|intcomma}}
-
-
- -
-

{% trans "by administrative act"%}

-
- - - {% for act in dashboard.rescue.administrative_act %}{% endfor %} - - - {% for act in dashboard.rescue.administrative_act %}{% endfor%} - -
{{act.act_type__label}}
{{act.number|intcomma}}
-
-
- -
-

{% trans "by year"%}

-
- - - {% for year in dashboard.rescue.by_year %}{% endfor %} - - - {% for year in dashboard.rescue.by_year %}{% endfor%} - -
{{year.date.year}}
{{year.number|intcomma}}
-
-
- -
-

{% trans "by month"%}

-
- - - {% for month in dashboard.rescue.by_month %}{% endfor %} - - - {% for month in dashboard.rescue.by_month %}{% endfor%} - -
{{month.date|date:"F Y"|capfirst}}
{{month.number|intcomma}}
-
-
- -

{{dashboard.rescue.with_associated_operation|intcomma}}

-

{{dashboard.rescue.with_associated_operation_percent|intcomma}}

- -
-

{% trans "archaeological files linked to at least one operation (%)"%}

-
- - - {% for year in dashboard.rescue.operational_by_year %}{% endfor %} - - - {% for year in dashboard.rescue.operational_by_year %}{% endfor%} - -
{{year.date.year}}
{{year.number|intcomma}}
-
-
- -
-

{% trans "by department"%}

-
- - - {% for dpt in dashboard.rescue.by_dpt %}{% endfor %} - - - {% for dpt in dashboard.rescue.by_dpt %}{% endfor%} - -
{{dpt.department__label}}
{{dpt.number|intcomma}}
-
-
- -
-

{% trans "surface by department (ha)"%}

-
- - - {% for dpt in dashboard.rescue.surface_by_dpt %}{% endfor %} - - - {% for dpt in dashboard.rescue.surface_by_dpt %}{% endfor%} - -
{{dpt.department__label}}
{{dpt.number|m2_to_ha|intcomma}}
-
-
- -
-

{% trans "main towns by number"%}

-
- - - {% for town in dashboard.rescue.towns %}{% endfor %} - - - {% for town in dashboard.rescue.towns %}{% endfor%} - -
{{town.town__name}}
{{town.number|intcomma}}
-
-
- -
-

{% trans "main towns by surface (ha)"%}

-
- - - {% for town in dashboard.rescue.surface_by_town %}{% endfor %} - - - {% for town in dashboard.rescue.surface_by_town %}{% endfor%} - -
{{town.town__name}}
{{town.number|m2_to_ha|intcomma}}
-
-
- -
-
- -{% endblock %} -- cgit v1.2.3