{% extends "base.html" %} {% block content %}
{{ t("server_list.subtitle") }}
| {{ t("table.name") }} | {{ t("table.provider") }} | {{ t("table.type") }} | {{ t("table.location") }} | {{ t("table.ipv4") }} | {{ t("table.costs") }} | {{ t("table.action") }} |
|---|---|---|---|---|---|---|
|
{{ s.name }}
{% if s.hostname %}
{% if s.is_expired %}
{{ t("status.expired") }}
{% elif s.is_expiring_soon %}
{{ t("status.expiring") }}
{% endif %}
{{ s.hostname }}
{% endif %}
|
{{ s.provider }} | {{ s.type }} | {% if s.location %}{{ s.location }}{% else %}–{% endif %} | {% if s.ipv4 %}{{ s.ipv4 }}{% else %}–{% endif %} | {% if s.price %} {{ "%.2f"|format(s.price) }} {{ s.currency }} / {{ t("price.month") if s.billing_period == "monthly" else t("price.year") }} {% else %} – {% endif %} | {{ t("server_detail.edit") }} |