{% 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 %} {% 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 %}