{% extends "milestone_base.html" %} {% block jsheader %} {% endblock %} {# this should be imported from somewhere else, not pasted #} {% macro statustext(update) %} {% if update %} {% if update.pending %} pending {% endif %} {{ update.status }} {% endif %} {% endmacro %} {% block body %}
{% for update_list in ['Non Stable Updates', 'Updates Needing Testing'] %}

{{ update_list }}

{% for update in updates[update_list] %} {% else %} {% endfor %}
Type Component Title Status Bugs
{{ update | updatetype }} {{ update.bugs[0].component }} '{{ update.title }}' {{ statustext(update) }} {% for bug in update.bugs %} {% if (bug.proposed_blocker or bug.proposed_fe or bug.accepted_blocker or bug.accepted_fe or bug.accepted_0day or bug.accepted_prevrel) %} {{ bug.bugid }} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}