Adds the speaker's e-mail address to the CSV output

This commit is contained in:
Christopher Neugebauer 2016-07-25 14:24:25 -07:00
parent 0c4597c4ea
commit c0f4707032

View file

@ -119,7 +119,8 @@ def review_all_proposals_csv(request):
# The fields from each proposal object to report in the csv # The fields from each proposal object to report in the csv
fields = [ 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", "score", "total_votes", "minus_two", "minus_one", "plus_one", "plus_two",
] ]