зеркало из https://github.com/mozilla/bugbot.git
26 строки
890 B
HTML
26 строки
890 B
HTML
<p>
|
|
The following {{ plural('bug has', data, pword='bugs have') }} a P1 WebCompat priority, however, {{ plural('its', data, pword='their') }} severity is set to low. {{ plural('Owner', data) }} got {{ plural('a needinfo request', data, pword='needinfo requests') }} to bump the severity:
|
|
</p>
|
|
<table {{ table_attrs }}>
|
|
<thead>
|
|
<tr>
|
|
<th>Bug</th>
|
|
<th>Summary</th>
|
|
<th>Severity</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for i, (bugid, summary, severity) 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>{{ severity }}</td>
|
|
</tr>
|
|
{% endfor -%}
|
|
</tbody>
|
|
</table>
|