{{ page_title }}
Summary
Last Pass: {% if last_pass %}{{ last_pass.date|timesince }} ago{% else %}never{% endif %}
{% if not bot_id and last_pass.bot_id %}
by 
{{ last_pass.bot_id }}
{% endif %}
Last Boot: {% if last_boot %}{{ last_boot.date|timesince }} ago{% else %}never{% endif %}
{% if not bot_id and last_boot.bot_id %}
by 
{{ last_boot.bot_id }}
{% endif %}
7-day "Pass" count: {{ trailing_week_pass_count }}
30-day "Pass" count: {{ trailing_month_pass_count }}
Recent Status
  
    {% for status_group in status_groups %}
        {% with status_group.0 as title_status %}
            - 
                {% if title_status.active_bug_id %}
                    
                        Patch {{ title_status.active_patch_id|force_escape|webkit_attachment_id|safe }} from bug
                        {{ title_status.active_bug_id|force_escape|webkit_bug_id|safe }}:
                    
                {% endif %}
                
                {% ifequal status_group|length 1 %}
                    {% with title_status as status %}
                        {% include 'includes/singlequeuestatus.html' %}
                    {% endwith %}
                {% else %}
                    
                        {% for status in status_group %}
                            - 
                                {% include 'includes/singlequeuestatus.html' %}
                            {% endfor %}
 {% endifequal %}
{% endwith %}
    {% endfor %}
 
Patches in queue
    | Position | Patch | Lock Acquired | 
|---|
    {% for row in work_item_rows %}
    
        | #{{ forloop.counter }} | {{ row.attachment_id|force_escape|webkit_attachment_id|safe }} | {% if row.lock_time %}
                {{ row.lock_time|timesince }} ago
            {% endif %} | 
    {% endfor %}