{% load i18n %} {% load l10n %} {% load extratags %}

{% trans "Platform status" %}

Render queue states:
{% if gis_lag_ok %}
{% blocktrans with gis_lastupdate|timesince:utc_now as date %}The GIS database is online and up to date, updated {{ date }} ago.{% endblocktrans %}
{% else %} {% if gis_lastupdate %}
{% blocktrans with gis_lastupdate|timesince:utc_now as date %}The GIS database is not up to date and was only updated {{ date }} ago.{% endblocktrans %}
{% else %}
{% blocktrans %}The GIS database is not available. Renderings cannot be processed at this time.{% endblocktrans %}
{% endif %} {% endif %} {% if waymarked_lag_ok %}
{% blocktrans with waymarked_lastupdate|timesince:utc_now as date %}The Waymarked route database is online and up to date, updated {{ date }} ago.{% endblocktrans %}
{% else %} {% if waymarked_lastupdate %}
{% blocktrans with waymarked_lastupdate|timesince:utc_now as date %}The Waymarked route database is not up to date and was only updated {{ date }} ago.{% endblocktrans %}
{% else %}
{% blocktrans %}The Waymarked route database is not available. Route overlays cannot be processed at this time.{% endblocktrans %}
{% endif %} {% endif %} {% if osmnames_ok %}
{% blocktrans %}The OsmNames Places table data is OK.{% endblocktrans %}
{% else %}
{% blocktrans %}The OsmNames Places table data is missing.{% endblocktrans %}
{% endif %}