{% 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 'Format' %} {% trans 'Hosts' %} {% trans 'Last Update' %}
{% if filter_list.recommended %} {% endif %} {{ filter_list.name }} {{ filter_list.description }} {% if filter_list.list_format == 'unsupported' %} {% trans 'Unsupported' %} {% elif filter_list.list_format == '' %} {% trans 'Unknown' %} {% else %} {{ filter_list.list_format }} {% endif %} {{ filter_list.host_count }} {{ filter_list.last_updated|date:"d/m/y H:i"|default_if_none:"" }} {% if filter_list.enabled %} {% else %} {% endif %} {% comment %}{% endcomment %}
{% endblock %}