templates/regression_new_set_nightly_affected.html (23 lines of code) (raw):

<p> The following {{ plural('bug has', data, pword='bugs have') }} the 'regression' keyword, thus the status flag for the nightly release is set to 'affected': </p> <table {{ table_attrs }}> <thead> <tr> <th>Bug</th> <th>Summary</th> </tr> </thead> <tbody> {% for i, (bugid, summary) 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> </tr> {% endfor -%} </tbody> </table>