{% extends "base.html" %} {% block content %}
{{ cucp_ips }} {% if cucp_ips %} {% for cucpip in cucp_ips %} {% endfor %}
List of CUCP's in the uploaded pcap file
CUCP_F1C_IP
{{ cucpip }}
{% endif %} {% if cumulative_stat_list %} {% for cumulative_stat in cumulative_stat_list %}
Stats for {{cumulative_stat.category}}
Attempts ({{ cumulative_stat.attempts }}) Success ({{ cumulative_stat.success }}) Fails ({{ cumulative_stat.fails }}) Timeouts ({{ cumulative_stat.timeouts }})
{% for identifier_stats in identifier_stats_list|slice:":10" %} {% if cumulative_stat.category == identifier_stats.identifier_category %} {{ identifier_stats.identifier_id }}{% if not forloop.last and forloop.counter0 < 10 %}; {% endif %} {% endif %} {% endfor %} {% if identifier_stats_list|length > 1 %} ... Show All {% endif %} {% for identifier_stats in identifier_stats_list|slice:":10" %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_fails %} {{ identifier_stats.identifier_id }}{% if not forloop.last and forloop.counter0 < 10 %}; {% endif %} {%endif%} {% endfor %} {% if identifier_stats_list|length > 10 %} Show All {% endif %} {% for identifier_stats in identifier_stats_list|slice:":10" %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_fails %} {{ identifier_stats.identifier_id }}{% if not forloop.last and forloop.counter0 < 10 %}; {% endif %} {%endif%} {% endfor %} {% if identifier_stats_list|length > 10 %} Show All {% endif %} {% for identifier_stats in identifier_stats_list|slice:":10" %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_timeout %} {{ identifier_stats.identifier_id }}{% if not forloop.last and forloop.counter0 < 10 %}; {% endif %} {%endif%} {% endfor %} {% if identifier_stats_list|length > 10 %} Show All {% endif %}
{% for identifier_stats in identifier_stats_list %} {% if cumulative_stat.category == identifier_stats.identifier_category %} {{ identifier_stats.identifier_id }}{% if not forloop.last %}; {% endif %} {% endif %} {% endfor %} {% for identifier_stats in identifier_stats_list %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_success %} {{ identifier_stats.identifier_id }} {% if not forloop.last %} ; {% endif %} {%endif%} {% endfor %} {% for identifier_stats in identifier_stats_list %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_fails %} {{ identifier_stats.identifier_id }} {% if not forloop.last %} ; {% endif %} {%endif%} {% endfor %} {% for identifier_stats in identifier_stats_list %} {% if cumulative_stat.category == identifier_stats.identifier_category and identifier_stats.identifier_timeout %} {{ identifier_stats.identifier_id }} {% if not forloop.last %} ; {% endif %} {%endif%} {% endfor %}
{% endfor %} {% endif %}
{% endblock %} {% block js %} function showHideRow(row) { $("#" + row).toggle(); } document.addEventListener('click', function (event) { if (event.target.classList.contains('identifier-link')) { event.preventDefault(); var mainId = event.target.getAttribute('data-identifier-id'); var url = '/drawranflow/display-streaming-table/draw-sequence/' + mainId + '/'; window.location.href = url; } }); {% endblock js %}