{% extends 'core/panels/bugs.html' %} {% load distro_tracker_extras %} {# Add the bug history graph to the panel's heading #} {% block panel-header %} {{ block.super }} {% octicon 'graph' 'bug history graph' %} {% endblock %} {% block bugs-list %} {% for category in panel.context.categories %}
  • {% if category.link %} {% endif %} {{ category.display_name }}: {% if category.link %} {% endif %} {{ category.bug_count }} {# Add merged bug count if it was given #} {% if category.merged %} {{ category.merged.bug_count }} {% endif %}
  • {% endfor %} {% endblock %}