{% extends "index.html" %} {% load i18n %} {% block menu %} {% with "hostgroups" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %} {% if hostgroups %} {% for hostgroup in hostgroups %} {% endfor %}
{% trans "Groupname" %} {% trans "Actions" %}
{{ hostgroup.name }} {% trans "Delete" %} {% trans "Members" %} {% trans "Assigned usergroups" %}
{% else %}
{% trans "No hostgroups exist." %}
{% endif %}

{% trans "Create hostgroup" %}

{% endblock content %}