Skip to content

Commit 2e6dd99

Browse files
committed
update ping page
1 parent 4e00df8 commit 2e6dd99

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed
Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
{% extends "base.html" %}
22
{% block content %}
33
<div class="container">
4-
<p>{{ host }}</p>
5-
<p>{{ status }}</p>
6-
<a href="/results/{{ id }}">Fetch Task Result</a>
4+
<table class="table">
5+
<thead>
6+
<th scope="col">Status</th>
7+
<th scope="col">Host</th>
8+
</thead>
9+
<tbody>
10+
<tr>
11+
<td>{{ status }}</td>
12+
<td><a href="/results/{{ id }}/">{{ host }}</a></td>
13+
</tr>
14+
</tbody>
15+
</table>
716
</div>
817
{% endblock %}

0 commit comments

Comments
 (0)