participant.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Thank you for participating!</h2>
  4. <p>Your unique UUID is <strong>{{ uuid }}</strong>.<br />
  5. It will be used to identify you to the measurement platform when you submit
  6. reports, so you should keep it secret.</p>
  7. <p>The information you provided:
  8. <ul>
  9. <li>machine name: <strong>{{ participant.name }}</strong></li>
  10. <li>contact: <strong>{{ participant.contact }}</strong></li>
  11. <li>country: <strong>{{ participant.country }}</strong></li>
  12. <li>comment: <strong>{{ participant.comment }}</strong></li>
  13. </ul>
  14. This information will appear on measurement results. If you wish to
  15. change one of them, contact us manually.</p>
  16. <p>Please note that new participants are manually moderated, so you should
  17. ping on IRC to make sure your access is validated. You can already setup
  18. the measurement script, it will start working as soon as your access is
  19. validated.</p>
  20. <p>Here is a script you can run to fetch measurements and report back the
  21. latency, with your UUID already pre-configured:</p>
  22. <p>
  23. <pre>
  24. {% include "run.sh" %}
  25. </pre>
  26. </p>
  27. {% endblock %}