{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% block extra_content %}

{% trans "Domains" %}

{% trans 'Add Domain' %}
{% if domains_status %}
{% for domain in domains_status.values %} {% endfor %}
{% trans "Domain" %} {% trans "Last update" %} {% trans "Result" %} {% trans "IP Address" %} {% trans "Actions" %}
{{ domain.domain }} {% if domain.timestamp %} {{ domain.timestamp|timesince }} {% else %} {% trans "Not yet" %} {% endif %} {% if domain.result %} {% trans "Success" %} {% elif not domain.timestamp %} - {% else %} {% trans "Failed" %} {% endif %} {% if domain.error_message %} ({{ domain.error_message }}) {% elif domain.error_code %} ({{ domain.error_code }}) {% endif %} {{ domain.ip_address|default_if_none:'-' }}
{% else %}

{% trans "No domains configured." %}

{% endif %} {% endblock %}