Changeset 14267 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 10 Nov 2016, 08:35:46 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r14244 r14267 437 437 grok.require('waeup.viewStudent') 438 438 439 note = _(""" 440 <br /><br /><br /><br /> 441 <font size='10'> 442 <strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 443 </font> 444 """) 445 439 446 def _sigsInFooter(self): 440 447 return [] … … 472 479 signatures=self._signatures(), 473 480 sigs_in_footer=self._sigsInFooter(), 481 note = self.note 474 482 ) 475 483 -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/raw_score_report.py
r14146 r14267 182 182 depcode = None 183 183 184 note = """ 185 <br /><br /><br /><br /> 186 <font size='10'> 187 <strong>Note:</strong> This copy is subject to correction for typographical errors and ratification by the departmental board. 188 </font> 189 """ 190 184 191 def __init__(self, faccode, depcode, session, level, author='System'): 185 192 super(RawScoreReport, self).__init__( … … 248 255 pdf_data, None, doc_title, self.author, 249 256 doc_title + ' - %s/%s - %s - %s -' % ( 250 self.faccode, self.depcode, self.levelcode, self.sessioncode) 257 self.faccode, self.depcode, self.levelcode, self.sessioncode), 258 note=self.note 251 259 ) 252 260 return pdf
Note: See TracChangeset for help on using the changeset viewer.