Home | History | Annotate | Download | only in templates
      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>WebKit Queue Status</title>
      5 <link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
      6 </head>
      7 <body>
      8 <h1>WebKit Queue Status</h1>{% for queue_name, statuses in queue_status.items %}
      9 <div class="status-details">
     10   <h2>{{ queue_name }}</h2>
     11   <ul>{% for status in statuses %}
     12     <li>{% if status.active_bug_id %}
     13       <span class="status-bug">
     14         Patch {{ status.active_patch_id|force_escape|webkit_attachment_id|safe }} from bug
     15         {{ status.active_bug_id|force_escape|webkit_bug_id|safe }}:
     16       </span>{% endif %}
     17       <span class="status-message">{{ status.message|force_escape|urlize|webkit_linkify|safe }}</span>{% if status.results_file %}
     18       <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>{% endif %}
     19       <span class="status-date">{{ status.date|timesince }} ago</span>
     20     </li>{% endfor %}
     21   </ul>
     22 </div>{% endfor %}
     23 </body>
     24 </html>
     25