{% extends "base.html" %} {% block content %}

{{ t("archive.title") }}

{{ t("archive.subtitle") }}

{% if servers %}
{% for s in servers %} {% endfor %}
{{ t("table.name") }} {{ t("table.provider") }} {{ t("table.type") }} {{ t("table.location") }} {{ t("table.ipv4") }} {{ t("table.action") }}
{{ s.name }} {% if s.hostname %}
{{ s.hostname }}
{% endif %}
{{ s.provider }} {{ s.type }} {% if s.location %}{{ s.location }}{% else %}{% endif %} {% if s.ipv4 %}{{ s.ipv4 }}{% else %}{% endif %}
{% else %}
{{ t("archive.empty") }}
{% endif %}
{% endblock %}