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

<p> The following {{ plural('bug hasn\'t', data, pword='bugs haven\'t') }} the dupeme keyword but {{ plural('has', data, pword='have') }} [dupeme] in the whiteboard: </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>