{% extends "base.html" %} {% block content %}
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 %} |