templates/assignee_no_login.html (29 lines of code) (raw):

<p>The following {{ plural('bug has', data, pword='bugs have') }} been unassigned due to assignee inactivity:</p> <table {{ table_attrs }}> <thead> <tr> <th>Triage owner</th> <th>Component</th> <th>Bug</th> <th>Summary</th> <th>Assignee</th> <th>Assignee Status</th> </tr> </thead> <tbody> {% for i, (triage_owner_name, product, comp, bugid, summary, assignee, assignee_status) in enumerate(data) -%} <tr {% if i % 2 == 0 %}bgcolor="#E0E0E0" {% endif -%} > <td>{{ triage_owner_name | e }}</td> <td>{{ product | e }}::{{ comp | e }}</td> <td> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id={{ bugid }}">{{ bugid }}</a> </td> <td>{{ summary | e }}</td> <td>{{ assignee | e }}</td> <td>{{ assignee_status | e }}</td> </tr> {% endfor -%} </tbody> </table>