# HG changeset patch # User Madhusudan.C.S # Date 1291905505 -19800 # Node ID 5fb620cdacf24e2c5f6b8f152662d51a5ee31b79 # Parent bd083c34aa43c70aa9b9f0c858c219b2dddddeb5 Add the string control character for CSV full name field. diff -r bd083c34aa43 -r 5fb620cdacf2 project/scipycon/registration/views.py --- a/project/scipycon/registration/views.py Thu Dec 09 20:06:34 2010 +0530 +++ b/project/scipycon/registration/views.py Thu Dec 09 20:08:25 2010 +0530 @@ -430,7 +430,7 @@ 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 -r bd083c34aa43 -r 5fb620cdacf2 project/templates/registration/regstats.html --- a/project/templates/registration/regstats.html Thu Dec 09 20:06:34 2010 +0530 +++ b/project/templates/registration/regstats.html Thu Dec 09 20:08:25 2010 +0530 @@ -39,7 +39,7 @@


-To download CSV +To download CSV Click here {% endblock content %}