Ignore:
Timestamp:
6 Jun 2013, 10:28:26 (11 years ago)
Author:
Henrik Bettermann
Message:

Remove gpa field.

Location:
main/waeup.aaue/trunk/src/waeup/aaue/students
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py

    r10269 r10280  
    7979    form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit(
    8080        'level_session', 'level_verdict',
    81         'validated_by', 'validation_date', 'gpa')
     81        'validated_by', 'validation_date')
    8282
    8383    omit_fields = ('password', 'suspended', 'suspended_comment',
  • main/waeup.aaue/trunk/src/waeup/aaue/students/interfaces.py

    r10102 r10280  
    8686        )
    8787
    88     gpa = schema.Int(
    89         title = _(u'GPA'),
    90         required = False,
    91         readonly = True,
    92         )
    93 
    9488class ICustomStudentOnlinePayment(ICustomOnlinePayment):
    9589    """A student payment via payment gateways.
  • main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py

    r9914 r10280  
    5757CustomStudentStudyLevel = attrs_to_fields(
    5858    CustomStudentStudyLevel, omit=[
    59     'total_credits', 'total_credits_s1', 'total_credits_s2', 'gpa'])
     59    'total_credits', 'total_credits_s1', 'total_credits_s2'])
    6060
    6161class CustomStudentStudyLevelFactory(StudentStudyLevelFactory):
Note: See TracChangeset for help on using the changeset viewer.