|
{% if voter_name in managed_voter_names %}
{% else %}
{{ voter_name }}
{% endif %}
|
{% for choice in choices %}
{% if selections[(voter_name, choice.id)] == 1 %}
|
{% elif selections[(voter_name, choice.id)] == 0 %}
|
{% else %}
??
|
{% endif %}
{% endfor %}
{% endfor %}