equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <title>Patch Status</title> |
|
5 <link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" /> |
|
6 </head> |
|
7 <body> |
|
8 <h1> |
|
9 Patch {{ attachment_id|force_escape|webkit_attachment_id|safe }} (Bug {{ bug_id|force_escape|webkit_bug_id|safe }}) |
|
10 </h1>{% for queue_name, statuses in queue_status.items %} |
|
11 <div class="status-details"> |
|
12 <h2>{{ queue_name }}</h2> |
|
13 <ul>{% for status in statuses %} |
|
14 <li> |
|
15 <span class="status-message">{{ status.message|force_escape|urlize|webkit_linkify|safe }}</span>{% if status.results_file %} |
|
16 <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>{% endif %} |
|
17 <span class="status-date">{{ status.date|timesince }} ago</span> |
|
18 </li>{% endfor %} |
|
19 </ul> |
|
20 </div>{% endfor %} |
|
21 </html> |