Changeset 18116


Ignore:
Timestamp:
9 Jul 2025, 16:22:50 (2 hours ago)
Author:
Henrik Bettermann
Message:

Change text again.

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  
    1212Kindly note the following:
    1313
    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.
     14Fees 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
     16Accommodation: 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
     18Food: Food is available in cafeteria on "pay-as-you-eat" basis.
     19"""
     20
     21ADML_UG_1_MORE_EXPENSIVE = """
     22Progression 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
     24Please 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
     26All 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
     28You are required to show evidence of the result / credentials you presented on application for admission.
     29
     30Fees can be paid using any of the following options:
     31
     32Fees 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
     34Kindly note the following:
     35
     36Fees 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.
    1537
    1638Accommodation: 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.
     
    6688
    6789"""
    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  
    427427from kofacustom.iuokada.students.admission_letter_ug import (
    428428    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)
    430430from kofacustom.iuokada.students.admission_letter_pg import ADML_PG
    431431from kofacustom.iuokada.students.admission_letter_pt import ADML_PT
     
    522522            #post_text = BASIC_PHARMACY_ONLY + ADML_UG_1 + ADML_UG_2_MEDICAL + ADML_UG_3
    523523            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
    524526        else:
    525527            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_text
    528528        return students_utils.renderPDFAdmissionLetter(self,
    529529            self.context.student, omit_fields=self.omit_fields,
Note: See TracChangeset for help on using the changeset viewer.