added verbose_name to phone_num
authornishanth
Sat, 29 May 2010 10:19:38 +0530
changeset 12 3d333517e3c7
parent 11 dad0085f039b
child 13 d668e6002f14
added verbose_name to phone_num
sdi/models.py
--- a/sdi/models.py	Sat May 29 10:14:47 2010 +0530
+++ b/sdi/models.py	Sat May 29 10:19:38 2010 +0530
@@ -46,7 +46,7 @@
     tools_used = models.TextField(help_text="Ex: Scilab, Mathematica, Matlab etc.", verbose_name="Other tools used", blank=True)
 
     address = models.TextField(help_text="To send DVD containing tutorials on Python if required.")
-    phone_num = models.CharField(max_length=15)
+    phone_num = models.CharField(max_length=15, verbose_name="Phone Number")
 
     likeliness_of_attending = models.CharField(max_length=1, choices=LIKELINESS_CHOICES)