Changeset 18116
- Timestamp:
- 9 Jul 2025, 16:22:50 (2 hours ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/admission_letter_ug.py
r18114 r18116 12 12 Kindly note the following: 13 13 14 Fees indicated on the Fee Structure page are valid for the current session only. Your Student Id (indicated above) is your logln to the University portal. As an indication of your acceptance of this offer of admission, you should pay a non-refundable Acceptance deposit of N200,000 immediately. Further note that the N200,000 deposit is part of the tuition fee for the session. Failure to pay may lead to forfeiture of admission. All fees must be paid in full at the beginning of the session, as basis for accommodation, registration and attendance of lectures. This is the rule for all students at all levels. Install mental payments of not more than two installments, may be allowed under exceptional circumstances. Fees once paid are not refundable. It is advisable that you keep the original receipts of fees paid and present them on demand. 14 Fees indicated on the Fee Structure page are valid for the current session only. Your Student Id (indicated above) is your logln to the University portal. As an indication of your acceptance of this offer of admission, you should pay a non-refundable Acceptance deposit of N300,000 immediately. Further note that the N300,000 deposit is part of the tuition fee for the session. Failure to pay may lead to forfeiture of admission. All fees must be paid in full at the beginning of the session, as basis for accommodation, registration and attendance of lectures. This is the rule for all students at all levels. Install mental payments of not more than two installments, may be allowed under exceptional circumstances. Fees once paid are not refundable. It is advisable that you keep the original receipts of fees paid and present them on demand. 15 16 Accommodation: Accommodation in University hostels is compulsory for every student. No student Is allowed to live outside the hostels. Any student who does so will be expelled from the University. 17 18 Food: Food is available in cafeteria on "pay-as-you-eat" basis. 19 """ 20 21 ADML_UG_1_MORE_EXPENSIVE = """ 22 Progression to 200 level is highly competitive and strictly based on merit/approved quota. Students who are unable to make the cut off CGPA will have the option of transferring to other allied courses. 23 24 Please note that at the point of registration for your programme of study (course), you will be required to present the following documents: Current UTME result slip, WAEC/NECO (0' Level) result, Birth certificate or sworn affidavit of age, and health certificate from a recognized Medical Centre. 25 26 All credentials (original) will be checked during registration. This admission will be cancelled at any point in time it is found that your claims in the application form are false. 27 28 You are required to show evidence of the result / credentials you presented on application for admission. 29 30 Fees can be paid using any of the following options: 31 32 Fees can be paid through your portal page. INSTRUCTIONS can be found below "FEES PAYMENT PROCEDURE" for the options you have to make your payment, as well as instructions on how to use your preferred payment option. If you choose to use the bank payment option, you can pay at any branch of the following banks through Etranzact platform only: Access Bank, First Bank, Zenith Bank 33 34 Kindly note the following: 35 36 Fees indicated on the Fee Structure page are valid for the current session only. Your Student Id (indicated above) is your logln to the University portal. As an indication of your acceptance of this offer of admission, you should pay a non-refundable Acceptance deposit of N500,000 immediately. Further note that the N500,000 deposit is part of the tuition fee for the session. Failure to pay may lead to forfeiture of admission. All fees must be paid in full at the beginning of the session, as basis for accommodation, registration and attendance of lectures. This is the rule for all students at all levels. Install mental payments of not more than two installments, may be allowed under exceptional circumstances. Fees once paid are not refundable. It is advisable that you keep the original receipts of fees paid and present them on demand. 15 37 16 38 Accommodation: Accommodation in University hostels is compulsory for every student. No student Is allowed to live outside the hostels. Any student who does so will be expelled from the University. … … 66 88 67 89 """ 68 69 INTRO_VARIOUS = """70 Progression to 200 level Law programme is highly competitive and strictly based on merit/approved quota. Students who are unable to make the cut off CGPA will have the option of transferring to other allied courses.71 """ -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/browser.py
r18114 r18116 427 427 from kofacustom.iuokada.students.admission_letter_ug import ( 428 428 ADML_UG_1, ADML_UG_2, ADML_UG_3, ADML_UG_2_MEDICAL, ADML_UG_2_PHARMACY, 429 BASIC_MEDICAL_ONLY, BASIC_PHARMACY_ONLY, INTRO_VARIOUS)429 BASIC_MEDICAL_ONLY, BASIC_PHARMACY_ONLY, ADML_UG_1_MORE_EXPENSIVE) 430 430 from kofacustom.iuokada.students.admission_letter_pg import ADML_PG 431 431 from kofacustom.iuokada.students.admission_letter_pt import ADML_PT … … 522 522 #post_text = BASIC_PHARMACY_ONLY + ADML_UG_1 + ADML_UG_2_MEDICAL + ADML_UG_3 523 523 post_text = ADML_UG_1 + ADML_UG_2_MEDICAL + ADML_UG_3 524 elif self.context.certcode in ('DPHARM','MBBSMED','BSCNNUR','LAW','CERT1') and self.context.current_level == 100: 525 post_text = ADML_UG_1_MORE_EXPENSIVE + ADML_UG_2 + ADML_UG_3 524 526 else: 525 527 post_text = ADML_UG_1 + ADML_UG_2 + ADML_UG_3 526 if self.context.certcode in ('DPHARM','MBBSMED','BSCNNUR','LAW','CERT1') and self.context.current_level == 100:527 post_text = INTRO_VARIOUS + post_text528 528 return students_utils.renderPDFAdmissionLetter(self, 529 529 self.context.student, omit_fields=self.omit_fields,
Note: See TracChangeset for help on using the changeset viewer.