{% extends "base.html" %} {% load i18n %} {% block contentplaceholder %}

{{ route.name }}

{% trans "Expires" %}: {{ route.expires|date:"d M y" }}
{% trans "Last update" %}: {{route.last_updated}} {% trans "by" %} {{route.applier}}

{% trans 'About' %}

{{ route.get_then }} {% trans 'all'%} {% if route.protocol.count %} {% for proto in route.protocol.all %} {{ proto }} {% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% trans 'traffic from' %} {{ route.source }} {% if route.port.count %}, {% trans 'port' %} {% for port in route.port.all %} {{ port }} {% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% trans 'to' %} {{ route.destination }} {% if route.destinationport.count %}, {% trans 'port' %} {% for port in route.destinationport.all %} {{ port }} {% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% if route.fragmenttype.count %} ({% trans 'Fragmentypes' %}: {% for f in route.fragmenttype.all %} {{ f }} {% if not forloop.last %},{% endif %} {% endfor %} ) {% endif %} {% if route.status = 'EXPIRED' or route.status = 'ADMININACTIVE' or route.status = 'INACTIVE' %} DEACTIVATED {% elif route.status = 'OUTOFSYNC' %} ERROR {% elif route.status = 'ACTIVE' %} {{ route.status }} {% elif route.status = 'PENDING' %} {{ route.status }} {% else %} {{ route.status }} {% endif %} {% if route.status != 'PENDING' %} {% trans "Edit" %} {% if route.status = 'ACTIVE' %} {% endif %} {% endif %}

Statistics

Number of packets (Loading)
Download raw data in JSON
{% comment %}check if graphs plugin in installed apps{% endcomment %} {% if 'graphs' in INSTALLED_APPS %} {% endif %}
{% endblock %} {% block pagejsbottom %} {% if 'graphs' in INSTALLED_APPS %} {% endif %} {% endblock %}