{% extends "layout.html" %}
{% from "box_macros.html" import box %}
{% block content %}
|
Waterfall
|
|
last build
|
{% for b in builders %}
{{ b.name }}
{{ " ".join(b.top) }}
|
{% endfor %}
| current activity |
{% for b in builders %}
{{ " ".join(b.status) }}
|
{% endfor %}
| {{ tz }} |
changes |
{% for b in builders %}
{{ b.name }} |
{% endfor %}
{# waterfall contents goes here #}
{% for i in range(gridlen) -%}
{% for strip in grid -%}
{%- if strip[i] -%}{{ box(**strip[i]) }}
{%- elif no_bubble -%}{{ box() }}
{%- endif -%}
{%- endfor -%}
{% endfor %}
{% if nextpage %}
next page
{% endif %}
{% if no_reload_page %}
Stop Reloading
{% endif %}
waterfall help
|
{% endblock %}
|