зеркало из https://github.com/mozilla/bugbot.git
24 строки
717 B
HTML
24 строки
717 B
HTML
<p>
|
|
The following {{ plural('bug doesn\'t', data, pword='bugs don\'t') }} affect the release but {{ plural('affects', data, pword='affect') }} beta or nightly without the regression keyword:
|
|
</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>
|