From 814b5243284d8f96f446f1c799bed0ce460dd216 Mon Sep 17 00:00:00 2001
From: Madhusudan.C.S
Date: Tue, 16 Nov 2010 17:34:36 +0530
Subject: Modify the help text for details field to be more harsh on users so
that they are clear as to what they are supposed to provide.
--HG--
branch : payments
---
project/scipycon/registration/models.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/project/scipycon/registration/models.py b/project/scipycon/registration/models.py
index 77a6dae..ed196f3 100644
--- a/project/scipycon/registration/models.py
+++ b/project/scipycon/registration/models.py
@@ -127,8 +127,9 @@ class Payment(base_models.ScopedBase):
details = models.CharField(
max_length=255, verbose_name="Details",
- help_text="If you made the payment using a cheque or a DD please "
- "provide the number on the cheque or DD. If you made the payment "
- "via Net Banking please provide the last four digits of the account "
- "number and the name of the account holder from which the transfer "
- "was made.", blank=True, null=True)
+ help_text="If the payment mode was cheque or DD please provide "
+ "the cheque or DD number and the name of the bank "
+ "and branch.
If the payment mode was Net Banking please "
+ "provide the last four digits of the account "
+ "number and the name of the account holder from which the "
+ "transfer was made.", blank=True, null=True)
--
cgit