From 6e1aaafa77a516c72198a554bf9ff334c36f2d65 Mon Sep 17 00:00:00 2001 From: Liz Fong-Jones <lizf@honeycomb.io> Date: Fri, 17 Sep 2021 11:46:37 -0700 Subject: [PATCH] add voter_type to preview --- helios/templates/voters_upload_confirm.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helios/templates/voters_upload_confirm.html b/helios/templates/voters_upload_confirm.html index 911cb25..978aece 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> -- GitLab