1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% extends "base.html" %}
- {% block content %}
- <h2>Thank you for participating!</h2>
- <p>Your unique UUID is <strong>{{ uuid }}</strong>.<br />
- It will be used to identify you to the measurement platform when you submit
- reports, so you should keep it secret.</p>
- <p>The information you provided:
- <ul>
- <li>machine name: <strong>{{ participant.name }}</strong></li>
- <li>contact: <strong>{{ participant.contact }}</strong></li>
- <li>country: <strong>{{ participant.country }}</strong></li>
- <li>comment: <strong>{{ participant.comment }}</strong></li>
- </ul>
- This information will appear on measurement results. If you wish to
- change one of them, contact us manually.</p>
- <p>Please note that new participants are manually moderated, so you should
- ping on IRC to make sure your access is validated. You can already setup
- the measurement script, it will start working as soon as your access is
- validated.</p>
- <p>Here are scripts you can run to fetch measurements and report back the
- latency, with your UUID already pre-configured:</p>
- <h4>Shell script implemented as a self-contained loop</h4>
- <p>
- <pre>
- {% include "run.sh" %}
- </pre>
- </p>
- <h4>Shell script that you can run in cron</h4>
- <p>
- <pre>
- {% include "cron.sh" %}
- </pre>
- </p>
- {% endblock %}
|