12345678910111213141516 |
- {% extends "base.html" %}
- {% block content %}
- <p>Your request has been submitted, ping will be launched towards the
- specified targets.</p>
- <p>The results should be available within a few minutes by using the following links:</p>
- <p>
- <ul>
- {% for t in targets %}
- <li><a href="/result/show/{{ t.unique_id }}">Result for {{ t }}</a></li>
- {% endfor %}
- </ul>
- </p>
- {% endblock %}
|