{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Flow view" %}{% endblock %} {% block content %}

{% trans "Flow view" %}

{% trans "Application flows: source, target, protocol, message and EAI" %}
{% for item in legend %} {{ item.label }} {% endfor %}
{% if svg %}

{% trans "Source → target diagram" %}

{% blocktrans count counter=flows|length %}{{ counter }} flow{% plural %}{{ counter }} flows{% endblocktrans %}
{% for edge in svg.edges %} {{ edge.title }} {% endfor %} {% for node in svg.left_nodes %} {{ node.label }} {{ node.display }} {% endfor %} {% for node in svg.right_nodes %} {{ node.label }} {{ node.display }} {% endfor %}
{% else %}
{% trans "No flow matches these criteria." %}
{% endif %} {% if flows %}

{% trans "Flow list" %}

{% for flow in flows %} {% endfor %}
{% trans "Identifier" %} {% trans "Source" %} {% trans "Target" %} {% trans "Protocol" %} {% trans "Port" %} {% trans "Message" %} {% trans "Interface" %} {% trans "EAI" %} {% trans "Description" %}
{{ flow.flow_id|default:flow.pk }} {{ flow.source.name }} {{ flow.target.name }} {{ flow.protocol|default:'—' }} {{ flow.port|default:'—' }} {{ flow.message_type|default:'—' }} {{ flow.get_interface_type_display }} {{ flow.eai|default:'—' }} {{ flow.description|default:'' }}
{% endif %} {% endblock %}