{% load i18n %} {% if object.error %} {% blocktrans %}

Something's wrong with the data of this report. Check if the time series are all the same time step.

{% endblocktrans %} {% else %}
{% trans "Last update" %}
{{ object.last_common_date|date:"Y-m-d H:i e (O)" }}
 
{% for synts in object.synoptic_timeseries %}
{% if not synts.group_with %} {{ synts.title|default:synts.timeseries.name }} {% else %}     {% endif %} {% if synts.subtitle %} ({{ synts.subtitle }}) {% endif %}
{% with precision=synts.timeseries.precision|default:0 %}
{{ synts.value|floatformat:precision }} {{ synts.timeseries.unit_of_measurement.symbol }}
{% endwith %} {% endfor %}
{% endif %}