In order to avoid statistical bias, randomize the talks before presenting them. Fundaments: https://www.surveygizmo.com/survey-blog/survey-question-order/ https://github.com/pythonitalia/conference/blob/7e5d9c462693d997e8507ee3a4c66ec5e4c0eb0e/conference/templates/conference/voting.html#L14 I think it should be enough to replace {% for t in talks %} by {% for t in shuffle(talks) %}
In order to avoid statistical bias, randomize the talks before presenting them.
Fundaments:
https://www.surveygizmo.com/survey-blog/survey-question-order/
conference/conference/templates/conference/voting.html
Line 14 in 7e5d9c4
I think it should be enough to replace
{% for t in talks %}
by
{% for t in shuffle(talks) %}