From c0f47070323e2ec9a3f50f84cd684ab3b195bd82 Mon Sep 17 00:00:00 2001
From: Christopher Neugebauer <chrisjrn@gmail.com>
Date: Mon, 25 Jul 2016 14:24:25 -0700
Subject: [PATCH] Adds the speaker's e-mail address to the CSV output

---
 symposion/reviews/views.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py
index b6569de4..29f85ed8 100644
--- a/symposion/reviews/views.py
+++ b/symposion/reviews/views.py
@@ -119,7 +119,8 @@ def review_all_proposals_csv(request):
 
     # The fields from each proposal object to report in the csv
     fields = [
-        "id", "proposal_type", "speaker_name", "title", "submitted", "cancelled", "status",
+        "id", "proposal_type", "speaker_name","speaker_email", "title",
+        "submitted", "cancelled", "status",
         "score", "total_votes", "minus_two", "minus_one", "plus_one", "plus_two",
     ]