templates/defectenhancementtask.html (27 lines of code) (raw):

<p>The following {{ plural('bug is', data, pword='bugs are') }} might have a wrong type:</p> <table {{ table_attrs }}> <thead> <tr> <th>Bug</th> <th>Summary</th> <th>Type</th> <th>BugBug Type</th> <th>Confidence (%)</th> </tr> </thead> <tbody> {% for i, (bugid, summary, type, bugbug_type, confidence, confidences, autofixed) 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>{{ type }}</td> <td>{{ bugbug_type }}</td> <td {% if autofixed %}bgcolor="#00FF00"{% endif -%}>{{ confidences }}</td> </tr> {% endfor -%} </tbody> </table>