Sha256: 95e2625b513dcc6107ebcc03edae2e84e3d2a8ebd6d170da6f6c04ec6aa12696
Contents?: true
Size: 1.25 KB
Versions: 45
Compression:
Stored size: 1.25 KB
Contents
{% extends "layouts/base.html" %} {% from "macros/box.html" import box %} {% block content %} <p> This is the Waterfall page. It shows the status of various builders in reverse chronological order. This allows you to see the most recent builds and their current status. You can additionally see the commits as they come in to the project. </p> <table class="bordered-table Module waterfall"> <thead> <tr> <th colspan="2">Builder</th> {% for b in builders %} <th class="{{ b.top_class }}"> <a href="{{ b.url }}">{{ b.name }}</a><br /> {{ " ".join(b.top) }} </th> {% endfor %} </tr> </thead> <tbody> <tr> <th colspan="2">Current Activity</th> {% for b in builders %} <td class="{{ b.status_class }}"> {{ "<br />".join(b.status) }} </td> {% endfor %} </tr> <tr> <th>Time ({{ tz }})</th> <th>Changes</th> {% for b in builders %} <td> </td> {% endfor %} </tr> {% for i in range(gridlen) -%} <tr> {% for strip in grid -%} {%- if strip[i] -%}{{ box(**strip[i]) }} {%- elif no_bubble -%}{{ box() }} {%- endif -%} {%- endfor -%} </tr> {% endfor %} </tbody> </table> {% endblock %}
Version data entries
45 entries across 45 versions & 6 rubygems