templates/warn_regressed_by.html (37 lines of code) (raw):

<p> The following {{ plural('bug has', data, pword='bugs have') }} more than {{ extra['threshold'] }} {{ plural('regression', extra['threshold']) }} reported in the last {{ extra['days'] }} {{ plural('day', extra['days']) }}: </p> <table {{ table_attrs }}> <thead> <tr> <th>Bug</th> <th>Summary</th> <th>Product</th> <th>Component</th> <th>Priority</th> <th>Severity</th> <th>Assignee</th> <th>Creation</th> <th>Last comment</th> </tr> </thead> <tbody> {% for i, (bugid, summary, product, component, creation, priority, severity, assignee, last_comment) in enumerate(data) -%} <tr {% if i % 2 == 0 %}bgcolor="#E0E0E0" {% endif -%} > <td> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id={{ bugid }}">{{ bugid }}</a> </td> <td>{{ summary | e }}</td> <td>{{ product | e }}</td> <td>{{ component | e }}</td> <td>{{ priority }}</td> <td>{{ severity | e }}</td> <td>{{ assignee | e }}</td> <td>{{ creation }}</td> <td>{{ last_comment }}</td> </tr> {% endfor -%} </tbody> </table>