{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% load extras %} {% block extra_content %}
| {% trans "Domain" %} | {% trans "Last update" %} | {% trans "Result" %} | {% trans "IP Addresses" %} | {% 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 %} | {% for ip_address in domain.ip_addresses %}{{ ip_address }}
{% empty %}-
{% endfor %} |
{% icon 'pencil-square-o' %} {% icon 'trash' %} |
{% trans "No domains configured." %}
{% endif %} {% endblock %}