From e3e0d324b1a2de48eb8a42c43007b6c02dfbb32b Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Mon, 13 Mar 2017 18:11:03 +0100
Subject: [PATCH] comments added

---
 smash/web/views.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/smash/web/views.py b/smash/web/views.py
index b27071d9..ba5eeae2 100644
--- a/smash/web/views.py
+++ b/smash/web/views.py
@@ -672,6 +672,8 @@ def appointment_edit_datetime(request, id):
 		form = AppointmentEditForm(instance=the_appointment)
 	return wrap_response(request, 'appointments/edit.html', {'form': form})
 
+#because we don't  wrap_response we must force login required
+@login_required
 def export_to_csv2(request, type="subjects"):
     #Create the HttpResponse object with the appropriate CSV header.
 	response = HttpResponse(content_type='text/csv')
-- 
GitLab