summaryrefslogtreecommitdiff
path: root/statistics_app/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'statistics_app/views.py')
-rw-r--r--statistics_app/views.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/statistics_app/views.py b/statistics_app/views.py
index 3c9fcae..3e45495 100644
--- a/statistics_app/views.py
+++ b/statistics_app/views.py
@@ -75,13 +75,15 @@ def workshop_public_stats(request):
"instructor__last_name", "coordinator__profile__state",
"date", "status"
)
- df = pd.DataFrame(data)
+ df = pd.DataFrame(list(data))
if not df.empty:
df.status.replace(
[0, 1, 2], ['Pending', 'Success', 'Reject'], inplace=True
)
- codes, states = list(zip(*states))
- df.coordinator__profile__state.replace(codes, states, inplace=True)
+ codes, states_map = list(zip(*states))
+ df.coordinator__profile__state.replace(
+ codes, states_map, inplace=True
+ )
response = HttpResponse(content_type='text/csv')
response['Content-Disposition'] = f'attachment; filename=statistics.csv'
output_file = df.to_csv(response, index=False)