app/projrev/views/helpers/forms.py
changeset 19 0c9bdcfac9f7
parent 13 684540719344
child 24 7257b66a6766
equal deleted inserted replaced
18:05b9e60e6a10 19:0c9bdcfac9f7
    24     # use Project model here.
    24     # use Project model here.
    25     model = Project
    25     model = Project
    26 
    26 
    27     # fields in the Project that must not appear in the form, but have
    27     # fields in the Project that must not appear in the form, but have
    28     # be automatically generated.
    28     # be automatically generated.
    29     fields = ('line_item', 'institution', 'state', 'district')
    29     fields = ('line_item', 'institution', 'state', 
       
    30               'district', 'mobile_num', 'fax_num')
    30 
    31 
    31 class ReviewForm(forms.ModelForm):
    32 class ReviewForm(forms.ModelForm):
    32   """Creates a form for review of proposal.
    33   """Creates a form for review of proposal.
    33   """
    34   """
    34 
    35