Ignore:
Timestamp:
17 Feb 2012, 08:34:39 (13 years ago)
Author:
Henrik Bettermann
Message:

Display carry_over field on pages.

Location:
main/waeup.sirp/trunk/src/waeup/sirp/students
Files:
4 edited

Legend:

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

    r7662 r7663  
    809809    label = 'Add course ticket'
    810810    form_fields = grok.AutoFields(ICourseTicketAdd).omit(
    811         'grade', 'score', 'automatic')
     811        'grade', 'score', 'automatic', 'carry_over')
    812812    pnav = 4
    813813
     
    17101710    grok.require('waeup.handleStudent')
    17111711    form_fields = grok.AutoFields(ICourseTicketAdd).omit(
    1712         'grade', 'score', 'core_or_elective', 'automatic')
     1712        'grade', 'score', 'core_or_elective', 'automatic', 'carry_over')
    17131713
    17141714    def update(self):
  • main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studyleveleditpage.pt

    r7549 r7663  
    1414      <th>Credits</th>
    1515      <th>Score</th>
     16      <th>CO</th>
    1617    </tr>
    1718  </thead>
     
    3233      <td tal:content="value/credits">CREDITS</td>
    3334      <td tal:content="value/score">SCORE</td>
     35      <td tal:content="value/carry_over">CO</td>
    3436    </tr>
    3537  </tbody>
  • main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelmanagepage.pt

    r7549 r7663  
    5050          <th>Code</th>
    5151          <th>Title</th>
    52           <th>Department</th>
    53           <th>Faculty</th>
    54           <th>Credits</th>
    55           <th>Mandatory</th>
     52          <th>Dept.</th>
     53          <th>Fact.</th>
     54          <th>Cred.</th>
     55          <th>Mand.</th>
    5656          <th>Score</th>
     57          <th>CO</th>
    5758          <th>Auto</th>
    5859        </tr>
     
    7475          <td tal:content="value/core_or_elective">MANDATORY</td>
    7576          <td tal:content="value/score">SCORE</td>
     77          <td tal:content="value/carry_over">CO</td>
    7678          <td tal:content="value/automatic">AUTO</td>
    7779        </tr>
  • main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studylevelpage.pt

    r7549 r7663  
    3131  <thead>
    3232    <tr>
    33       <th>Semester</th>
     33      <th>Sem.</th>
    3434      <th>Code</th>
    3535      <th>Title</th>
    36       <th>Department</th>
    37       <th>Faculty</th>
    38       <th>Credits</th>
    39       <th>Mandatory</th>
     36      <th>Dept.</th>
     37      <th>Fact.</th>
     38      <th>Cred.</th>
     39      <th>Mand.</th>
    4040      <th>Score</th>
     41      <th>CO</th>
    4142      <th>Auto</th>
    4243    </tr>
     
    5455      <td tal:content="value/core_or_elective">MANDATORY</td>
    5556      <td tal:content="value/score">SCORE</td>
     57      <td tal:content="value/carry_over">CO</td>
    5658      <td tal:content="value/automatic">AUTO</td>
    5759    </tr>
Note: See TracChangeset for help on using the changeset viewer.