diff options
author | Madhusudan.C.S | 2010-11-16 17:34:36 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-11-16 17:34:36 +0530 |
commit | 814b5243284d8f96f446f1c799bed0ce460dd216 (patch) | |
tree | a16c00f57dc56f8bd7d7066ac71551b702b439df /project | |
parent | 40fd5fed6b86b37668582923e6113acbcf8a2312 (diff) | |
download | scipycon-814b5243284d8f96f446f1c799bed0ce460dd216.tar.gz scipycon-814b5243284d8f96f446f1c799bed0ce460dd216.tar.bz2 scipycon-814b5243284d8f96f446f1c799bed0ce460dd216.zip |
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
Diffstat (limited to 'project')
-rw-r--r-- | project/scipycon/registration/models.py | 11 |
1 files 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 <font color='red'>cheque or DD number and the name of the bank " + "and branch</font>.<br/> If the payment mode was Net Banking please " + "provide the <font color='red'>last four digits of the account " + "number and the name of the account holder</font> from which the " + "transfer was made.", blank=True, null=True) |