{% extends "base.html" %} {% from "partials/_bars.html" import bars %} {% block content %}

Backlog Health — {{ project.name }}

{{ bars("By type", health.by_type) }} {{ bars("By priority", health.by_priority) }} {{ bars("By status", health.by_status) }} {{ bars("Aging", health.aging) }}

Checkpoints

pending {{ health.checkpoints.pending }} · done {{ health.checkpoints.done }} · rejected {{ health.checkpoints.rejected }} · completion {{ '%.0f' % (health.checkpoints.completion_rate * 100) }}%

{% if health.hotspots.components or health.hotspots.files %}

Hotspots (≥2 open)

    {% for h in health.hotspots.components %}
  • component: {{ h.name }} ({{ h.count }})
  • {% endfor %} {% for h in health.hotspots.files %}
  • file: {{ h.name }} ({{ h.count }})
  • {% endfor %}
{% endif %}

Velocity

{% if velocity.release_cadence %}

Release cadence

{% endif %}
{% endblock %}