diff options
author | Madhusudan.C.S | 2010-11-16 17:36:21 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-11-16 17:36:21 +0530 |
commit | fcfd1ad4aa613ffc50e9b69b46aca13cb5c3a064 (patch) | |
tree | 4064c49b64bc1f459d41b471095647c6e1cce20e /project | |
parent | 568138fbc63828f8f21314cb9d21c95faaa1a350 (diff) | |
download | scipycon-fcfd1ad4aa613ffc50e9b69b46aca13cb5c3a064.tar.gz scipycon-fcfd1ad4aa613ffc50e9b69b46aca13cb5c3a064.tar.bz2 scipycon-fcfd1ad4aa613ffc50e9b69b46aca13cb5c3a064.zip |
Typo of type field twice is fixed to details field in the form of registrantion.
--HG--
branch : payments
Diffstat (limited to 'project')
-rw-r--r-- | project/scipycon/registration/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/scipycon/registration/forms.py b/project/scipycon/registration/forms.py index fc9cb70..15934d4 100644 --- a/project/scipycon/registration/forms.py +++ b/project/scipycon/registration/forms.py @@ -168,7 +168,7 @@ class PaymentForm(forms.ModelForm): class Meta: model = Payment - fields = ('paid', 'type', 'type') + fields = ('paid', 'type', 'details') PC = ( |