{% trans "total" %}
{% trans "Status" %} | {% trans "Number" %} |
{% for lbl, nb in dashboard.survey.total %}
{{lbl}} | {{nb|intcomma}} |
{% endfor %}
{% trans "by year" %}
{%for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "State" %} |
{% endif %}
{{yr|default_if_none:''}} | {% endfor %}
{% for lbl, years in dashboard.survey.by_year %}
{% for nb in years %}
{% if forloop.counter0|divisibleby:5 %}
{{lbl}} | {% endif %}
{{nb|intcomma}} |
{% endfor %}
{% endfor %}
{% trans "by realisation year" %}
{%for yr in dashboard.realisation_years %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "State" %} |
{% endif %}
{{yr.year|default_if_none:''}} | {% endfor %}
{% for lbl, years in dashboard.survey.by_realisation_year %}
{% for nb in years %}
{% if forloop.counter0|divisibleby:5 %}
{{lbl}} | {% endif %}
{{nb|intcomma}} |
{% endfor %}
{% endfor %}
{% trans "current year" %}
| {% for lbl in dashboard.filters_label %}{{lbl}} | {%endfor%}
{% trans "Area"%} | {% for nb in dashboard.survey.area %}{{nb|intcomma}} | {%endfor%}
{% trans "Man-day"%} | {% for nb in dashboard.survey.manday %}{{nb|intcomma}} | {%endfor%}
{% trans "Man-day/hectare"%} | {% for nb in dashboard.survey.mandayhect %}{{nb|intcomma}} | {%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|intcomma}} | {{org.manday|intcomma}} | {{org.mandayhect|intcomma}} |
{% 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|intcomma}} | {%endfor%}
{% trans "Man-day"%} | {% for nb in dashboard.survey.manday_realised %}{{nb|intcomma}} | {%endfor%}
{% trans "Man-day/hectare"%} | {% for nb in dashboard.survey.mandayhect_realised %}{{nb|intcomma}} | {%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.scientist__attached_to__name}} | {{org.area|intcomma}} | {{org.manday|intcomma}} | {{org.mandayhect|intcomma}} |
{% endfor %}
{% trans "area by organization by year" %}
{% for org, vals in dashboard.survey.org_by_year %}
{% if forloop.counter0|divisibleby:4 %}
{% for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "Organization" %} |
{% endif %}
{{yr|default_if_none:''}} |
{% endfor %}
{% endif %}
{% for area, cost in vals %}
{% if forloop.counter0|divisibleby:5 %}
{{org}} |
{% endif %}
{{area|intcomma}} | {% endfor %}
{% endfor %}
{% for area in dashboard.survey.org_by_year_area_mean %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "Mean" %} | {% endif%}
{{area|intcomma}} | {% endfor %}
{% trans "effective operations areas (ha)" %}
{%for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:5 %}
|
{% endif %}
{{yr|default_if_none:''}} | {% endfor %}
{% for nb, mean in dashboard.survey.effective %}
{% if forloop.counter0|divisibleby:5 %}{% trans "Sum" %} | {%endif%}
{{nb|m2_to_ha|intcomma}} | {% endfor %}
{% for nb, avg in dashboard.survey.effective %}
{% if forloop.counter0|divisibleby:5 %}{% trans "Average" %} | {%endif%}
{{avg|m2_to_ha|intcomma}} | {% endfor %}
{% trans "man-days/hectare by year" %}
{%for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:5 %}
|
{% endif %}
{{yr|default_if_none:''}} | {% endfor %}
{% for nb, mean in dashboard.survey.mandayshect %}
{% if forloop.counter0|divisibleby:5 %}{% trans "Man-Days/hectare" %} | {%endif%}
{{nb|intcomma}} | {% endfor %}
{% for nb, avg in dashboard.survey.mandayshect %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "Average" %} |
{%endif%}
{{avg|intcomma}} | {% endfor %}
{% trans "by month" %}
{% for mt in dashboard.last_months %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "State" %} | {% endif %}
{{mt.date|date:"N Y"|capfirst}} | {% endfor %}
{% for lbl, months in dashboard.survey.by_month %}
{%for nb in months %}
{% if forloop.counter0|divisibleby:5 %}
{{lbl}} | {% endif %}
{{nb|intcomma}} |
{% endfor %}
{% endfor %}
{% trans "by department" %}
{% for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:5 %}
{% trans "Department" %} |
{% endif %}
{{yr|default_if_none:''}} | {% endfor %}{% trans "Sum" %} |
{% for lbl, years in dashboard.survey.by_dpt %}
{% for nb in years %}
{% if forloop.counter0|divisibleby:5 %}
{{lbl}} | {% endif %}
{{nb|intcomma}} | {% endfor %}
{% endfor %}
{% trans "effective operation by department" %}
{% for yr in dashboard.years %}
{% if forloop.counter0|divisibleby:4 %}
{% trans "Department" %} | {% endif %}
{{yr|default_if_none:''}} | {% 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 %}
{%for nb, area, cost, fnap in years %}
{% if forloop.counter0|divisibleby:4 %}
{{lbl}} | {% endif %}
{{nb|intcomma}} | {{area|intcomma}} | {% endfor %}
{% endfor %}
{% trans "main towns by number" %}
{% trans "Town" %} | {% trans "Number" %} |
{% for lbl, nb in dashboard.survey.towns %}
{{lbl}} | {{nb|intcomma}} |
{% 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|intcomma}} |
{% endfor %}