{% load humanize i18n hq %}

{% hq_icon "server" %} {% translate "Runtime" %}

{% translate "The container that served this request, and the versions it runs on" %}

{% include "hq/panels/_brand_mark.html" with brand=docker_icon only %} {% translate "Container" %}
{% if container_id %} {{ container_id }} {% else %} {% translate "outside Docker" %} {% endif %}
{% hq_icon "timer" %}{% translate "Uptime" %}
{% if uptime %} {{ uptime }} {% else %} {% endif %}
{% comment %} DEBUG on a deployed box leaks tracebacks and settings to anyone who can provoke an error, so it is stated rather than assumed — and coloured when it is on. {% endcomment %}
{% hq_icon "bug" %}{% translate "Debug" %}
{% if debug %} {% translate "on" %} {% else %} {% translate "off" %} {% endif %}
{% for entry in runtime %}
{% include "hq/panels/_brand_mark.html" with brand=entry.brand only %} {{ entry.label }}
{{ entry.value }}
{% endfor %}