{% extends "includes/_layout.html" %} {% import "includes/_macros.html" as ui with context %} {% block title %} {% if unique_bugs_count == 1 %} {% set bugs_word = " bug" %} {% else %} {% set bugs_word = " bugs" %} {% endif %}
{% for bug_data in all_bugs["DATA"] %} {% if bug_data.bugs|length > 0 %} {% set bugs_len_str = bug_data.bugs|length|string %} {{ bug_data['display_name']}}: {{ bugs_len_str }} {% endif %} {% endfor %}