{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans 'Domain lookup' %} - Libravatar{% endblock title %} {% block content %}

{% trans 'Domain lookup' %}

{{ form.domain.errors }}{{ form.domain.label_tag }}: {{ form.domain }}

{% if data %}
{% trans 'HTTP avatar server:' %} {% if data.avatar_server_http %} {{data.avatar_server_http}} {% if data.avatar_server_http_ipv4 %}
{{ data.avatar_server_http_ipv4 }} {% else %}
{% trans 'Warning: no A record for this hostname' %} {% endif %} {% if data.avatar_server_http_ipv6 %}
{{ data.avatar_server_http_ipv6 }} {% endif %} {% else %} {% trans 'use http://cdn.libravatar.org' %} {% endif %}
{% trans 'HTTPS avatar server:' %} {% if data.avatar_server_https %} {{data.avatar_server_https}} {% if data.avatar_server_https_ipv4 %}
{{ data.avatar_server_https_ipv4 }} {% else %}
{% trans 'Warning: no A record for this hostname' %} {% endif %} {% if data.avatar_server_https_ipv6 %}
{{ data.avatar_server_https_ipv6 }} {% endif %} {% else %} {% trans 'use https://seccdn.libravatar.org' %} {% endif %}
{% endif %} {% endblock content %}