<%inherit file="body.html"/> <%namespace name="util" file="util.html"/> <%def name="title()"> Milestones

Milestones

Here is a timeline of all the milestones during the current cycle. Click on any one of them to see the tasks that are assigned to be completed by that milestone. The next milestone is highlighted by the marker on the left of the timeline.

% if milestone_groups: <% last_group = None %> % for group in milestone_groups: <% last_group = group %> % endfor
## Point at the first milestone that is after the current date % if group.due_date >= current_date and (last_group is None or last_group.due_date < current_date): > % endif - ${group.due_date} % for milestone in group.milestones: - ${milestone.name} % endfor
% else:

No milestones!

% endif