# HG changeset patch # User Madhusudan.C.S # Date 1289909076 -19800 # Node ID 93cc238021aefb63eb7ef30072002427381b7b18 # Parent 41178e6ce096d0bae39afcbe67e2c6415dfc662d 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. diff -r 41178e6ce096 -r 93cc238021ae project/scipycon/registration/models.py --- a/project/scipycon/registration/models.py Tue Nov 16 17:12:38 2010 +0530 +++ b/project/scipycon/registration/models.py Tue Nov 16 17:34:36 2010 +0530 @@ -127,8 +127,9 @@ 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)