{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans 'Static Host List' %}

{% if static_host_list %} {% for static_host in static_host_list %} {% endfor %} {% else %} {% endif %}
{% trans 'Hostname' %} {% trans 'IP Address' %}
{{ static_host.hostname }} {{ static_host.ip_address }}

{% trans 'DNS Filter Lists' %}

{% if filter_lists %} {% for filter_list in filter_lists %} {% endfor %} {% else %} {% endif %}
{% trans 'Name' %} {% trans 'Description' %} {% trans 'Hosts' %} {% trans 'Last Update' %} {% trans 'Status' %} {% trans 'Update' %} {% trans 'Edit' %}
{% if filter_list.recommended %} {% endif %} {{ filter_list.name }} {{ filter_list.description }} {{ filter_list.host_count }} {{ filter_list.last_updated|default_if_none:"" }} {% if filter_list.enabled %} {% else %} {% endif %} {% comment %}{% endcomment %}
{% endblock %}