{% extends "base.html" %} {% load origin %}{% origin %} {% load ietf_filters static bootstrap3 %} {% block pagehead %} {% endblock %} {% block content %} {% origin %}

{% block title %} {% if level == "team" %} Statistics for review teams {% elif level == "reviewer" %} Statistics for reviewers in {{ reviewers_for_team.name }} {% endif %} {% endblock %}

{% if level == "reviewer" %}

« Back to teams

{% endif %}
Show:
{% for slug, label, url in possible_stats_types %} {{ label }} {% endfor %}
Count:
{% for slug, label, url in possible_count_choices %} {{ label }} {% endfor %}
Request time: - {% for name, value in request.GET.iteritems %} {% if name != "from" and name != "to" %} {% endif %} {% endfor %}
{% if stats_type == "time" %}
Team:
{% for slug, label, url in possible_teams %} {{ label }} {% endfor %}
{% if selected_teams %}
Completion:
{% for slug, label, url in possible_completion_types %} {{ label }} {% endfor %}
Result:
{% for slug, label, url in possible_results %} {{ label }} {% endfor %}
State:
{% for slug, label, url in possible_states %} {{ label }} {% endfor %}
{% endif %} {% endif %}
{% if stats_type == "completion" %}

Completion status and completion time

{% for row in data %} {% endfor %}
{% if level == "team" %} Team {% elif level == "reviewer" %} Reviewer {% endif %} Open in time Open late Completed in time Completed late Not completed Avg. compl. days{% if count == "pages" %}/page{% endif %}
{{ row.obj }} {{ row.open_in_time }} {{ row.open_late }} {{ row.completed_in_time }} {{ row.completed_late }} {{ row.not_completed }} {% if row.average_assignment_to_closure_days != None %} {{ row.average_assignment_to_closure_days|floatformat }} {% endif %}
{% elif stats_type == "results" %}

Results of completed reviews

{% for r in results %} {% endfor %} {% for row in data %} {% for c in row.result_list %} {% endfor %} {% endfor %}
{% if level == "team" %} Team {% elif level == "reviewer" %} Reviewer {% endif %} {{ r.name }}
{{ row.obj }}{{ c }}
{% elif stats_type == "states" %}

Specific request states

{% for s in states %} {% endfor %} {% for row in data %} {% for c in row.state_list %} {% endfor %} {% endfor %}
{% if level == "team" %} Team {% elif level == "reviewer" %} Reviewer {% endif %} {{ s.name }}
{{ row.obj }}{{ c }}
{% elif stats_type == "time" and selected_teams %}

Counts per month

{% endif %} {% if stats_type != "time" %}

Note: {% if level == "team" %}teams{% elif level == "reviewer" %}reviewers{% endif %} with no requests in the period are omitted.

{% endif %} {% if level == "team" and stats_type != "time" %}

Statistics for individual reviewers:

{% for t in teams %} {{ t.name }} {% endfor %}
{% endif %} {% endblock %} {% block js %} {% if stats_type == "time" %} {% endif %} {% endblock %}