templates/p2_no_activity.html (31 lines of code) (raw):
<p>
The following {{ plural('bug has', data, pword='bugs have') }} a priority P2 and no activity for the last {{ extra['nmonths'] }} {{ plural('month', extra[nmonths]) }}
{% if query_url_nag %}
(see the search query on <a href="{{ query_url_nag }}">Bugzilla</a>)
{% endif -%}
:
</p>
<table {{ table_attrs }}>
<thead>
<tr>
<th>Component</th>
<th>Bug</th>
<th>Summary</th>
<th>Last comment</th>
</tr>
</thead>
<tbody>
{% for i, (product, comp, bugid, summary, last_comment) in enumerate(data) -%}
<tr {% if i % 2 == 0 %}bgcolor="#E0E0E0"
{% endif -%}
>
<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>{{ last_comment }}</td>
</tr>
{% endfor -%}
</tbody>
</table>