{% extends "base.html" %} {% block title %}{{ super() }} - {{ page_title }}{% endblock %} {% block bodycontent %}

{{ page_title }}

Last Update: {{ now().strftime('%Y-%m-%d %H:%M:%S') }} UTC (v{{ version }}).
There are {{ count }} tickets in this category.

{% for month in months %} {% for ticket in month[1] %} {% endfor %} {% endfor %}
ID Alias Reason Last Change Summary
{{ month[0] }} ({{ month[1]|length }})
{{ ticket.bug.id }} {{ ticket.bug.alias|join(', ') }} {% if ticket.blocked %}Blocked by: {% for blocker in ticket.blocked %} {{ blocker.id }}, {% endfor %}
{% endif %} {% if ticket.dead_review %}Dead Review
{% endif %} {% if ticket.fail_build %}Fails to build
{% endif %} {% if ticket.legal_issues %}Legal Issues
{% endif %} {% if ticket.needinfo %}Needinfo from submitter
{% endif %} {% if ticket.not_ready %}Marked NotReady
{% endif %} {% if ticket.stalled %}Marked Stalled
{% endif %}
{{ ticket.last_modified.strftime('%Y-%m-%d %H:%M:%S') }} {{ ticket.bug.summary }}
{% endblock %} {% block javascript %} {% endblock %}