diff options
Diffstat (limited to 'grumpy/templates/browse_cat.html')
-rw-r--r-- | grumpy/templates/browse_cat.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/grumpy/templates/browse_cat.html b/grumpy/templates/browse_cat.html index e2c2dc0..6de7e15 100644 --- a/grumpy/templates/browse_cat.html +++ b/grumpy/templates/browse_cat.html @@ -5,7 +5,11 @@ <ul> <li><a href="{{ url_for('index') }}">..</a></li> {% for pkg in pkgs %} - <li><a href="{{ url_for('browse_pkg', cat=cat, pkg=pkg.pkg)}}">{{ pkg.pkg | e }}</a></li> + <li><a href="{{ url_for('browse_pkg', cat=cat, pkg=pkg.pkg)}}">{{ pkg.pkg | e }}</a> + {% if pkg.qaissues %} + {{ pkg.qaissues | length }} issue(s)</span> + {% endif %} + </li> {% endfor %} <ul> {% endblock %} |