{% extends "base.html" %} {% block title %}Team metrics{% endblock %} {% block heading %}Team metrics{% endblock %} {% block body %}

Patches submitted (and accepted) per team

{% for month in months %} {% endfor %} {% for team_data in teams_data %} {% for count in team_data.1 %} {% endfor %} {% endfor %}
Team{{ month }}
{{team_data.0.display_name}} {{ count.0 }} ({{ count.1 }})

The total number of patches here should not be expected to match the totals on the front page because some people are members of multiple teams and their patches will be included in the counts of all teams they are a member of.

{% endblock %}