{% 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 %}
Non Stable Updates
Type |
Component |
Title |
Status |
{% for update in updates %}
{{ update | updatetype }} |
{{ update.bugs[0].component }} |
{{ update.title }} |
{{ statustext(update) }} |
{% else %}
|
|
|
|
{% endfor %}
Updates Needing Testing
Type |
Component |
Title |
Karma |
Status |
{% for update in updates_testing %}
{{ update | updatetype }} |
{{ update.bugs[0].component }} |
{{ update.title }} |
{{ update.karma }} |
{{ statustext(update) }} |
{% else %}
|
|
|
|
|
{% endfor %}
{% endblock %}
{% block footer %}
{% endblock %}