This report shows outcomes and their associated epics. For each epic, we forecast a completion date based on the expected number of stories in the epic, the historical or predicted throughput of that team delivering the epic, and the number of stories completed to date.
Epic | Team | Stories | {% if epic_deadline_field %}Deadline | {% endif %} | Forecast |
---|---|---|---|---|---|
{{ epic.key }}: {{ epic.summary }} | {{ epic.team.name }} |
{% if epic.min_stories %}
|
{% if epic_deadline_field %}
{% if epic.deadline %} {{ epic.deadline.strftime("%d %b %Y") }} {% else %} N/A {% endif %} | {% if epic.forecast %} {% if epic.forecast.deadline_quantile is not none %} {% if epic.forecast.deadline_quantile > 0.95 %} > 95% {% elif epic.forecast.deadline_quantile < 0.1 %} < 10% {% else %} {{ (epic.forecast.deadline_quantile * 100) | round | int }}% {% endif %} {% endif %} {% endif %} | {% endif %}
{% if epic.forecast %}
{% for quantile, weeks in epic.forecast.quantiles %}
{{ future_date(weeks).strftime("%d %b %Y") }} @ {{ (quantile * 100) | round | int }}%
{% endfor %}
{% endif %}
|