{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block content %}
⚡ PRACTICE ROUND — This round does not count toward your score.
ROUND {{ current_round }} / {{ num_practice_rounds }} {% for i in round_indices %} {% endfor %}
{% if condition == 'aware' %}
▲ The top {{ top_k }} clicked candidates by score advance to Stage 2
{% else %}
Some candidates will advance to Stage 2 this round.
{% endif %}
Task reminder
• Each click reveals one noisy résumé signal; more clicks make the résumé score more reliable.
• You have {{ total_clicks }} clicks this round; unused clicks do not carry over.
• Candidates with 0 clicks are screened out and do not reach interviews.
• In Stage 2, an independent interview committee adds interview scores; the system combines résumé and interview scores, giving more weight to more reliable scores.
• Bonus is based on your top-catching rate: only rounds where the true top candidate is hired count.
{% for r in rows %}
{{ r.label }}
{% if r.clicks == 0 %}—{% else %}{{ r.score }}{% endif %}
{% if r.clicks > 0 %} {{ r.clicks }}× {% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}