{% extends "includes/_layout.html" %} {% import "includes/_macros.html" as ui %} {% block title %}

Milestone {{ current_milestone }} overview

{% endblock %} {% macro render_graph(id) %}
{% endmacro %} {% block body %}
{% call ui.render_ibox('Milestones', False, content_classes='no-padding', id='list_milestones') %}
{% for m in milestones %} {{ m }} {% endfor %}
{% endcall %}
{% call ui.render_ibox('Configure filters') %}
{% endcall %} {% call ui.render_ibox() %}

Release bug trends

{{ render_graph("bug-report-chart") }}

Burndown chart

{{ render_graph("bug-burndown-chart") }}

Incoming/Outgoing bugs (weekly)

{{ render_graph("bug-incoming-outgoing-chart") }} {% endcall %}
{% endblock %}