templates/tracking_nag.html (46 lines of code) (raw):

<p> For your information, the next release is in {{ extra['next_release'] }} {{ plural('day', extra['next_release']) }}. </p> <p> The following {{ plural('bug is', data, pword='bugs are') }} tracked in {{ extra['channel'] }} {{ extra['version'] }} {% if extra['untouched'] %} and untouched in the last 3 days {% endif -%} : </p> <table {{ table_attrs }}> <thead> <tr> <th>Bug</th> <th>Summary</th> <th>Assignee</th> <th>Needinfo</th> <th>Last comment</th> </tr> </thead> <tbody> {% for i, (bugid, summary, needinfos, To, last_comment) 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>{{ To | e }}</td> <td> {% if needinfos -%} <ul style="padding: 0; margin: 0"> {% for ni in needinfos -%} <li> <a href="mailto:{{ ni }}">{{ ni | e }}</a> </li> {% endfor -%} </ul> {% endif -%} </td> <td>{{ last_comment }}</td> </tr> {% endfor -%} </tbody> </table>