now name is printed properly anoop
authornishanth
Fri, 03 Sep 2010 15:59:06 +0530
branchanoop
changeset 235 7583311884e1
parent 234 cf3de6d222ce
child 236 af8cee5a0a27
now name is printed properly
sdi/models.py
--- a/sdi/models.py	Fri Sep 03 15:58:24 2010 +0530
+++ b/sdi/models.py	Fri Sep 03 15:59:06 2010 +0530
@@ -97,7 +97,7 @@
 
     def __unicode__(self):
 
-        return self.first_name + " " + self.last_name
+        return self.first_name.title() + " " + self.last_name.title()
 
 class ParticipantInfo(models.Model):