{% trans "Total" %}
{% trans "Status" %} | {% trans "Number" %} |
{% for lbl, nb in dashboard.survey.total %}
{{lbl}} | {{nb}} |
{% endfor %}
{% trans "By year" %}
{% trans "State" %} | {%for yr in dashboard.years %}{{yr}} | {% endfor %}
{% for lbl, years in dashboard.survey.by_year %}
{{lbl}} | {%for nb in years %}{{nb}} | {% endfor %}
{% endfor %}
{% trans "By realisation year" %}
{% trans "State" %} | {%for yr in dashboard.realisation_years %}{{yr.year}} | {% endfor %}
{% for lbl, years in dashboard.survey.by_realisation_year %}
{{lbl}} | {%for nb in years %}{{nb}} | {% endfor %}
{% endfor %}
{% trans "Current year" %}
{% trans "Status" %} | {% for lbl in dashboard.filters_label %}{{lbl}} | {%endfor%}
{% trans "Area"%} | {% for nb in dashboard.survey.area %}{{nb}} | {%endfor%}
{% trans "Man-day"%} | {% for nb in dashboard.survey.manday %}{{nb}} | {%endfor%}
{% trans "Man-day/hectare"%} | {% for nb in dashboard.survey.mandayhect %}{{nb}} | {%endfor%}
{% trans "Man-day/hectare for effective operations (current year):" %} {{dashboard.survey.mandayhect_effective}}
{% trans "Organizations (current year)" %}
| {% trans "Area" %} | {% trans "Man-day" %} | {% trans "Man-day/hectare" %} |
{% for org in dashboard.survey.org %}
{{org.scientist__attached_to__name}} | {{org.area}} | {{org.manday}} | {{org.mandayhect}} |
{% endfor %}
{% trans "Current realisation year" %}
{% trans "Status" %} | {% for lbl in dashboard.filters_label %}{{lbl}} | {%endfor%}
{% trans "Area"%} | {% for nb in dashboard.survey.area_realised %}{{nb}} | {%endfor%}
{% trans "Man-day"%} | {% for nb in dashboard.survey.manday_realised %}{{nb}} | {%endfor%}
{% trans "Man-day/hectare"%} | {% for nb in dashboard.survey.mandayhect_realised %}{{nb}} | {%endfor%}
{% trans "Man-day/hectare for effective operations (current realisation year):" %} {{dashboard.survey.mandayhect_real_effective}}
{% trans "Organizations (current realisation year)" %}
| {% trans "Area" %} | {% trans "Man-day" %} | {% trans "Man-day/hectare" %} |
{% for org in dashboard.survey.org_realised %}
{{org.in_charge__attached_to__name}} | {{org.area}} | {{org.manday}} | {{org.mandayhect}} |
{% endfor %}
{% trans "Area by organization by year" %}
{% trans "Organization" %} | {% for yr in dashboard.years%}{{yr}} | {% endfor %}
{% for org, vals in dashboard.survey.org_by_year %}
{{org}} | {% for area, cost in vals %}{{area}} | {% endfor %}
{% endfor %}
{% trans "Mean" %} | {% for area in dashboard.survey.org_by_year_area_mean %}{{area}} | {% endfor %}
{% trans "Effective operations areas (ha)" %}
| {% for yr in dashboard.years%}{{yr}} | {% endfor %}
{% trans "Sum" %} | {% for nb, mean in dashboard.survey.effective %}{{nb|m2_to_ha}} | {% endfor %}
{% trans "Average" %} | {% for nb, avg in dashboard.survey.effective %}{{avg|m2_to_ha}} | {% endfor %}
{% trans "Man-Days/hectare by Year" %}
| {% for yr in dashboard.years%}{{yr}} | {% endfor %}
{% trans "Man-Days/hectare" %} | {% for nb, mean in dashboard.survey.mandayshect %}{{nb}} | {% endfor %}
{% trans "Average" %} | {% for nb, avg in dashboard.survey.mandayshect %}{{avg}} | {% endfor %}
{% trans "By month" %}
{% trans "State" %} | {%for mt in dashboard.last_months %}{{mt.date|date:"F Y"|capfirst}} | {% endfor %}
{% for lbl, months in dashboard.survey.by_month %}
{{lbl}} | {%for nb in months %}{{nb}} | {% endfor %}
{% endfor %}
{% trans "By department" %}
{% trans "Department" %} | {%for yr in dashboard.years %}{{yr}} | {% endfor %}{% trans "Sum" %} |
{% for lbl, years in dashboard.survey.by_dpt %}
{{lbl}} | {%for nb in years %}{{nb}} | {% endfor %}
{% endfor %}
{% trans "Effective operation by department" %}
{% trans "Department" %} | {%for yr in dashboard.years %}{{yr}} | {% endfor %}{% trans "Sum" %} |
{%for yr in dashboard.years %}{%trans "Nb."%} | {%trans "Area"%} | {% endfor %}{%trans "Nb."%} | {%trans "Area"%} |
{% for lbl, years in dashboard.survey.effective_by_dpt %}
{{lbl}} | {%for nb, area, cost, fnap in years %}{{nb}} | {{area}} | {% endfor %}
{% endfor %}
{% trans "Main towns by number" %}
{% trans "Town" %} | {% trans "Number" %} |
{% for lbl, nb in dashboard.survey.towns %}
{{lbl}} | {{nb}} |
{% endfor %}
{% trans "Main towns by surface" %}
{% trans "Town" %} | {% trans "Total surface (ha)" %} |
{% for lbl, nb in dashboard.survey.towns_surface %}
{{lbl}} | {{nb|m2_to_ha}} |
{% endfor %}