summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rw-r--r--project/scipycon/registration/views.py2
-rw-r--r--project/templates/registration/regstats.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/project/scipycon/registration/views.py b/project/scipycon/registration/views.py
index b5ae5ea..0db3fab 100644
--- a/project/scipycon/registration/views.py
+++ b/project/scipycon/registration/views.py
@@ -380,7 +380,7 @@ def regstats_download(request, scope):
regs = Registration.objects.all()
for reg in regs:
row = []
- row.append(reg.registrant.get_full_name())
+ row.append('"%"' % reg.registrant.get_full_name())
row.append(reg.city)
payment, create = reg.registrant.payment_set.get_or_create(
user=reg.registrant, scope=reg.scope)
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html
index b5aeeea..681e00d 100644
--- a/project/templates/registration/regstats.html
+++ b/project/templates/registration/regstats.html
@@ -39,7 +39,7 @@
</table>
<br/><br/><br/>
-<strong>To download PDF
+<strong>To download CSV
<a href="{% url scipycon_regstats_download params.scope %}">here</a></strong>
{% endblock content %}