summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1ffa881..ec60122 100644
--- a/project/scipycon/registration/views.py
+++ b/project/scipycon/registration/views.py
@@ -430,7 +430,7 @@ def regstats_download(request, scope):
wifi, create = reg.registrant.wifi_set.get_or_create(
user=reg.registrant, scope=reg.scope)
- row.append('"%"' % reg.registrant.get_full_name())
+ row.append('"%s"' % reg.registrant.get_full_name())
row.append(acco.sex)
row.append(reg.city)
row.append('Yes' if payment.confirmed else 'No')
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html
index 1e3a141..a0b3786 100644
--- a/project/templates/registration/regstats.html
+++ b/project/templates/registration/regstats.html
@@ -39,7 +39,7 @@
</table>
<br/><br/><br/>
-<strong>To download CSV
+<strong>To download CSV Click
<a href="{% url scipycon_regstats_download params.scope %}">here</a></strong>
{% endblock content %}