relman-auto-nag/templates/leave_open_no_activity.html

24 строки
693 B
HTML

<p>
The following {{ plural('bug has', data, pword='bugs have') }} leave-open keyword and no activity for the last {{ extra['nmonths'] }} {{ plural('month', data) }}:
</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>