Changeset 16486
- Timestamp:
- 20 May 2021, 05:52:54 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/browser.py
r16410 r16486 401 401 402 402 @property 403 def basic_medical_only_text(self): 404 return""" 405 Progression to 200 Level MBBS programmes is highly competitive and strictly based on merit/approved quota. Students who are unable to make the cut off point will have the option of joining allied courses such as BSc Nursing, BSc Anatomy, BSc Biochemistry, BSc Physiology, Bachelor of Medical Laboratory Science, including Computer Science and engineering courses at 200 Level provided they have the relevant O/L credits. 406 """ 407 408 @property 403 409 def post_text_ug(self): 404 410 return """ … … 521 527 file = open(file_path, 'rb') 522 528 mergefiles = [file,] 529 if self.context.certcode == 'BBMS' and self.context.current_level == 100: 530 post_text = self.basic_medical_only_text + self.post_text_ug 531 else: 532 post_text = self.post_text_ug 523 533 return students_utils.renderPDFAdmissionLetter(self, 524 534 self.context.student, omit_fields=self.omit_fields, 525 pre_text=self.pre_text_ug, post_text= self.post_text_ug,535 pre_text=self.pre_text_ug, post_text=post_text, 526 536 mergefiles=mergefiles, 527 537 watermark=watermark)
Note: See TracChangeset for help on using the changeset viewer.