{% extends "layout.html" %} {% block sidebar %}{% include "lintian-fixes/sidebar.html" %}{% endblock %} {% from "lintian-fixes/util.html" import lintian_tag_link %} {% block page_title %}Absorbed Lintian Fixes - Statistics{% endblock %} {% block body %}

Lintian Fixes - Statistics

Number of Fixes by Tag

Absorbed fixes are fixes that have either been pushed directly by the Janitor, or have been proposed as a merge request and then merged.

{% for tag, absorbed_count, unabsorbed_count, total_count in by_tag %} {% endfor %}
Lintian Tag Previously merged/pushed Ready but not yet merged/pushed
{{ lintian_tag_link(tag) }} {{ absorbed_count }} {{ unabsorbed_count }}
Total {{ by_tag | sum(attribute=1) }} {{ by_tag | sum(attribute=2) }}

Burndown

{% endblock %}