Merge pull request #32 from lca2017/chrisjrn/csv_speaker_email

Adds the speaker's e-mail address to the CSV output
This commit is contained in:
Scott Bragg 2016-07-26 08:22:25 +10:00 committed by GitHub
commit c12a541ec6

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",
] ]