{% extends "base.html" %} {% load i18n %}{% load bootstrap %} {% block content %}

{% trans "Related hosts" %} {% trans "Add related host" %}

{% trans "Main host:" %} {{ main_host.get_fqdn }}

{% for rh in related_hosts %} {% empty %} {% endfor %}
{% trans "Host" %}
{% trans "Comment" %}
{% trans "Available" %} {% blocktrans with type=_("IPv4") %}{{ type }} Address{% endblocktrans %}
{% blocktrans with type=_("IPv4") %}{{ type }} interface ID{% endblocktrans %}
{% blocktrans with type=_("IPv6") %}{{ type }} Address{% endblocktrans %}
{% blocktrans with type=_("IPv6") %}{{ type }} interface ID{% endblocktrans %}
{{ rh }}
{{ rh.comment }}
{{ rh.available|yesno }} {{ rh.get_ipv4 }}
{{ rh.interface_id_ipv4 }}
{{ rh.get_ipv6 }}
{{ rh.interface_id_ipv6 }}
{% trans "No related hosts yet." %}
{% endblock %}