<%inherit file="body.html"/> <%namespace name="util" file="util.html"/> <%namespace name="terminology" file="terminology.html"/> <%! import report_tools %> <%def name="title()"> ${card_title}

${title()}

Health check

${'' if not card.is_healthy else ''} % for result in health_checks: % endfor
Needs attention!
${result['name']} ${result['result']}

${card.status} in ${lane}

Overall blueprint completion
% if card_has_blueprints: ${util.roadmap_progress_bar(bp_status_totals)} % else:
Progress graph pending linked blueprints.
% endif

Description

${card.description if card.description is not None else 'No description could be found.'}

Read the full description.

Acceptance criteria

${card.acceptance_criteria if card.acceptance_criteria is not None else 'No acceptance criteria could be found.'}

Read the full acceptance criteria.

% if card_has_blueprints: % for status in status_order: % for bp in sorted(blueprints[status], key=lambda bp: bp.milestone_name): % endfor % endfor
Title Assignee Priority Status Expected milestone
${bp.name} ${bp.assignee_name} ${bp.priority} ${status} ${bp.milestone_name}
% endif