Changeset 14419 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 18 Jan 2017, 10:48:00 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students/reports
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/level_report.py
r14270 r14419 22 22 class CustomLevelReport(LevelReport): 23 23 24 note = """ 25 <br /><br /><br /><br /> 26 <font size='10'> 27 <strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 28 </font> 29 """ 24 note = "" 25 26 # note = """ 27 #<br /><br /><br /><br /> 28 #<font size='10'> 29 #<strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 30 #</font> 31 #""" 30 32 31 33 class LevelReportGenerator(LevelReportGenerator): -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/raw_score_report.py
r14399 r14419 184 184 depcode = None 185 185 186 note = """ 187 <br /><br /><br /><br /> 188 <font size='10'> 189 <strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 190 </font> 191 """ 186 note = "" 187 188 # note = """ 189 #<br /><br /><br /><br /> 190 #<font size='10'> 191 #<strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 192 #</font> 193 #""" 192 194 193 195 def __init__(self, faccode, depcode, session, level, author='System'): -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/session_results_presentation.py
r14270 r14419 22 22 class CustomSessionResultsPresentation(SessionResultsPresentation): 23 23 24 note = """ 25 <br /><br /><br /><br /> 26 <font size='10'> 27 <strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 28 </font> 29 """ 24 note = "" 25 26 # note = """ 27 #<br /><br /><br /><br /> 28 #<font size='10'> 29 #<strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 30 #</font> 31 #""" 30 32 31 33 class CustomSessionResultsPresentationGenerator(SessionResultsPresentationGenerator): -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_level_report.py
r14398 r14419 30 30 result = get_students('fac1', 'dep1', 2010, 100) 31 31 self.assertEqual(result, 32 [(u'1234', u'TESTER, Bob', 30, 30, '5.000', 'N il', '', 30, 30, '5.000', 'Proceed')])32 [(u'1234', u'TESTER, Bob', 30, 30, '5.000', 'NIL', '', 30, 30, '5.000', 'Proceed')]) 33 33 return 34 34
Note: See TracChangeset for help on using the changeset viewer.