{% extends load_base %} {% load i18n %} {% load gui_utils %} {% block javascript %} {% include "gui/node/monitoring_js.html" with graphs=graphs %} {% endblock %} {% block base_nav %} {% include "gui/node/navigation.html" with li_monitoring="active" %} {% include "gui/node/monitoring_navigation.html" with mon_net="active" %} {% endblock %} {% block base_content %}
{% with desc_bandwidth=graph_items|keyvalue:'net-bandwidth'|keyvalue:'desc' desc_packets=graph_items|keyvalue:'net-packets'|keyvalue:'desc' %}
{% for nic in node_nics %}
{{ node.hostname }} › {% blocktrans %}nic {{ nic }} › bandwidth{% endblocktrans %} {% include "gui/node/monitoring_graph.html" with desc=desc_bandwidth %}
{{ node.hostname }} › {% blocktrans %}nic {{ nic }} › packets{% endblocktrans %} {% include "gui/node/monitoring_graph.html" with desc=desc_packets %}
{% endfor %}
{% endwith %} {% endblock %}