зеркало из https://github.com/mozilla/bugbot.git
24 строки
697 B
HTML
24 строки
697 B
HTML
|
<p>
|
||
|
The following {{ plural('bug is', data, pword='bugs are') }} blocking web compatibility knowledge base entries, but don't have the webcompat:platform-bug keyword set:
|
||
|
</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>
|