diff --git a/helios/templates/voters_upload_confirm.html b/helios/templates/voters_upload_confirm.html index 911cb259d9d321e6bd0cc69ddc9cde95acb7320c..978aecee2bc327efd16c2c2b6d96c93a11b6164a 100644 --- a/helios/templates/voters_upload_confirm.html +++ b/helios/templates/voters_upload_confirm.html @@ -8,9 +8,9 @@ You have uploaded a file of voters. The first few rows of this file are: </p> <table> -<tr><th>Voter Login</th><th>Email Address</th><th>Name</th></tr> +<tr><th>Voter Type</th><th>Voter Login</th><th>Email Address</th><th>Name</th></tr> {% for v in voters %} -<tr><td>{{v.voter_id}}</td><td>{{v.email}}</td><td>{{v.name}}</td></tr> +<tr><td>{{v.voter_type}}</td><td>{{v.voter_id}}</td><td>{{v.email}}</td><td>{{v.name}}</td></tr> {% endfor %} </table>