app/projrev/views/helpers/forms.py
changeset 4 8d9da911ed7d
parent 1 324233b04d76
child 6 17cab73c49eb
--- a/app/projrev/views/helpers/forms.py	Thu Aug 06 12:17:29 2009 +0530
+++ b/app/projrev/views/helpers/forms.py	Thu Aug 06 18:15:57 2009 +0530
@@ -16,7 +16,6 @@
   """
 
   document = forms.FileField()
-  micr_code = forms.CharField(max_length=15, required=False)
 
   class Meta:
     # We store most of the data in Project model. So even though the
@@ -26,7 +25,7 @@
 
     # fields in the Project that must not appear in the form, but have
     # be automatically generated.
-    fields = ('micr_code', 'line_item', 'institution', 'state', 'district')
+    fields = ('line_item', 'institution', 'state', 'district')
 
 class ReviewForm(forms.ModelForm):
   """Creates a form for review of proposal.