<%inherit file="body.html"/> <%namespace name="util" file="util.html"/> <%namespace name="terminology" file="terminology.html"/> <%! import report_tools %> <%def name="title()"> Kanban boards overview

Kanban boards overview

This page shows the progress towards completing all of the ${terminology.spec_group_title_plural()} for the current cycle. You should read the About page to understand more about this site.

There are currently ${all_workitems.total} work units in cards in ${blueprint_count} projects. The current number of work units in each status is:

% for status, label in report_tools.states_and_labels: % endfor
Status Count
${label} ${getattr(all_workitems,status)}
<%def name="workitems_per_day(workitems, days)"> % if days < 1: ${workitems.todo+workitems.inprogress+workitems.blocked} % else: ${"%.2f" % ((workitems.todo+workitems.inprogress+workitems.blocked)/(days*1.0))} % endif

${terminology.spec_group_title_plural()}

These are projects that have a milestone that is being followed by this tracker. The progress towards each is defined by the progress towards completing all of the cards that contribute to implementing the ${terminology.spec_group_title()}.

% for area in areas: % if area.has_priority(): % endif % for group in area.groups: % if area.has_priority(): % endif % endfor % endfor

${area.primarymilestone}

${terminology.spec_group_title()} CompletionPriorityStatus/Description
${group.name | h} ${util.progress_bar(group)} ${group.priority}${group.status}
% if chart_url:

Card burndown

(enlarge)

Ignore the optimal burndown line in this chart, since various projects have various milestones which is not reflected in this chart.

${util.burndown_chart(chart_url, large=True)}

There are ${days_left} days left in the current cycle. % if days_left > 0: That means that in order to complete all the work ${workitems_per_day(all_workitems, days_left)} work units must be completed per day. % else: That means that ${workitems_per_day(all_workitems, days_left)} work units need to be postponed to another cycle % endif

% endif