summaryrefslogtreecommitdiffstats
path: root/WebKitTools/QueueStatusServer/templates/queuestatus.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebKitTools/QueueStatusServer/templates/queuestatus.html')
-rw-r--r--WebKitTools/QueueStatusServer/templates/queuestatus.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/WebKitTools/QueueStatusServer/templates/queuestatus.html b/WebKitTools/QueueStatusServer/templates/queuestatus.html
deleted file mode 100644
index 1b98952..0000000
--- a/WebKitTools/QueueStatusServer/templates/queuestatus.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>{{ display_queue_name }} Status</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-</head>
-<body>
-<h1>{{ display_queue_name }} Status</h1>
-
-<h3>Recent Status</h3>
-
-<div class="status-details">
- <ul>
- {% for status_group in status_groups %}
- {% with status_group.0 as title_status %}
- <li class="status-group">
- {% if title_status.active_bug_id %}
- <span class="status-bug">
- Patch {{ title_status.active_patch_id|force_escape|webkit_attachment_id|safe }} from bug
- {{ title_status.active_bug_id|force_escape|webkit_bug_id|safe }}:
- </span>
- {% endif %}
-
- {% ifequal status_group|length 1 %}
- {% with title_status as status %}
- {% include 'includes/singlequeuestatus.html' %}
- {% endwith %}
- {% else %}
- <ul>
- {% for status in status_group %}
- <li class="status">
- {% include 'includes/singlequeuestatus.html' %}
- </li>
- {% endfor %}
- </ul>
- {% endifequal %}
- </li>
- {% endwith %}
- {% endfor %}
- </ul>
-</div>
-
-<h3>Patches in queue</h3>
-<table>
- <tr><th>Position</th><th>Patch</th><th>Lock Acquired</th></tr>
- {% for row in work_item_rows %}
- <tr>
- <td>#{{ forloop.counter }}</td>
- <td>
- {{ row.attachment_id|force_escape|webkit_attachment_id|safe }}
- </td>
- <td>
- {% if row.lock_time %}
- {{ row.lock_time|timesince }} ago
- {% endif %}
- </td>
- </tr>
- {% endfor %}
-</table>
-
-</body>
-</html>