File diff 0c4597c4eae5 → c0f47070323e
symposion/reviews/views.py
Show inline comments
...
 
@@ -116,13 +116,14 @@ def review_all_proposals_csv(request):
 
    permisison to review. '''
 

	
 
    queryset = ProposalBase.objects.filter()
 

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

	
 
    output = StringIO.StringIO()
 
    writer = csv.writer(output, quoting=csv.QUOTE_NONNUMERIC)