|
@@ -17,6 +17,8 @@ latency from various points in the network towards you.</p>
|
|
|
</ol>
|
|
|
</p>
|
|
|
|
|
|
+<h3>Launch a measurement</h3>
|
|
|
+
|
|
|
<p>
|
|
|
<form action="/submit" method="POST">
|
|
|
<label for="target">Target:</label>
|
|
@@ -28,7 +30,25 @@ latency from various points in the network towards you.</p>
|
|
|
</p>
|
|
|
|
|
|
<p>If you mark your measurement as public, it will be displayed on the
|
|
|
-home page. Note that the IP addresses of the target will be shown
|
|
|
+home page below. Note that the IP addresses of the target will be shown
|
|
|
alongside the result.</p>
|
|
|
|
|
|
+<h2>Recent measurements</h2>
|
|
|
+
|
|
|
+<table>
|
|
|
+ <tr>
|
|
|
+ <th>Date</th>
|
|
|
+ <th>Target</th>
|
|
|
+ <th>Result</th>
|
|
|
+ </tr>
|
|
|
+ {% for t in targets %}
|
|
|
+ <tr>
|
|
|
+ <td>{{ t.submitted.strftime('%Y-%m-%d %H:%M') }}</td>
|
|
|
+ <td>{{ t.get_ip() }}</td>
|
|
|
+ <td><a href="/result/show/{{ t.unique_id }}">View result</a></td>
|
|
|
+ </tr>
|
|
|
+ {% endfor %}
|
|
|
+</table>
|
|
|
+
|
|
|
+
|
|
|
{% endblock %}
|