Changeset ceaf3bd for asadb/forms


Ignore:
Timestamp:
Sep 15, 2011, 2:56:11 PM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage, test-hooks
Children:
bd72d5c
Parents:
aa31d18
git-author:
Alex Dehnert <adehnert@…> (09/15/11 14:56:11)
git-committer:
Alex Dehnert <adehnert@…> (09/15/11 14:56:11)
Message:

Fix the affiliate fields for membership

Location:
asadb/forms
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • asadb/forms/admin.py

    r5b834ab rceaf3bd  
    3232        'num_undergrads',
    3333        'num_grads',
    34         'num_community',
     34        'num_alum',
     35        'num_other_affiliate',
    3536        'num_other',
    3637    )
  • asadb/forms/models.py

    r5b834ab rceaf3bd  
    149149    num_undergrads = models.IntegerField()
    150150    num_grads = models.IntegerField()
    151     num_community = models.IntegerField()
     151    num_alum = models.IntegerField()
     152    num_other_affiliate = models.IntegerField()
    152153    num_other = models.IntegerField()
    153154
  • asadb/forms/views.py

    r5b834ab rceaf3bd  
    241241            'num_undergrads',
    242242            'num_grads',
    243             'num_community',
     243            'num_alum',
     244            'num_other_affiliate',
    244245            'num_other',
    245246            'membership_list',
Note: See TracChangeset for help on using the changeset viewer.