We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e00df8 commit 2e6dd99Copy full SHA for 2e6dd99
netopsio/ping/templates/ping/base.html
@@ -1,8 +1,17 @@
1
{% extends "base.html" %}
2
{% block content %}
3
<div class="container">
4
- <p>{{ host }}</p>
5
- <p>{{ status }}</p>
6
- <a href="/results/{{ id }}">Fetch Task Result</a>
+ <table class="table">
+ <thead>
+ <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>
16
</div>
17
{% endblock %}
0 commit comments