{% extends "index.html" %} {% load i18n %} {% block menu %} {% with "hosts" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %} {% if hosts %} {% for host in hosts %} {% endfor %}
{% trans "Name" %} {% trans "FQDN" %} {% trans "User" %} {% trans "Actions" %}
{{ host.name }} {{ host.fqdn }} {{ host.user }} {% trans "Delete" %} {% trans "Groups" %} {% trans "Setup" %}
{% else %}
{% trans "No hosts exist." %}
{% endif %}
{% trans "Create host" %}
{% endblock content %}