submit.html 392 B

12345678910111213141516
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <p>Your request has been submitted, ping will be launched towards the
  4. specified targets.</p>
  5. <p>The results should be available within a few minutes by using the following links:</p>
  6. <p>
  7. <ul>
  8. {% for t in targets %}
  9. <li><a href="/result/show/{{ t.unique_id }}">Result for {{ t }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. </p>
  13. {% endblock %}