Changeset 11873 for main/waeup.kwarapoly
- Timestamp:
- 22 Oct 2014, 14:11:24 (10 years ago)
- Location:
- main/waeup.kwarapoly/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/CHANGES.txt
r11864 r11873 4 4 1.2dev (unreleased) 5 5 =================== 6 7 * Rename 'Study Course', 'Phone', 'Email', 'Faculty'. 6 8 7 9 * Add PIN fields to first and second sitting sections on UG clearance form'. -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/locales/en/LC_MESSAGES/waeup.kofa.po
r10723 r11873 9 9 "Content-Type: text/plain; charset=iso-8859-1\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "Language: en\n" 12 "X-Generator: Poedit 1.6.5\n" 11 13 12 14 msgid "Upload portrait" … … 19 21 msgstr "Change photo" 20 22 23 msgid "Faculty" 24 msgstr "Institute" 25 26 msgid "Faculty:" 27 msgstr "Institute:" 28 29 msgid "Faculties" 30 msgstr "Institutes" 31 32 msgid "The faculty code chosen already exists." 33 msgstr "The institute code chosen already exists." 34 35 msgid "Manage faculty" 36 msgstr "Manage institute" 37 38 msgid "Add faculty" 39 msgstr "Add institute" 40 41 msgid "The code chosen already exists in this faculty." 42 msgstr "The code chosen already exists in this institute." 43 44 msgid "Faculty Code" 45 msgstr "Institute Code" 46 47 msgid "Name of faculty" 48 msgstr "Name of institute" 49 50 msgid "Email" 51 msgstr "Email Address" 52 53 msgid "Email:" 54 msgstr "Email Address:" 55 56 msgid "Phone" 57 msgstr "GSM Number" 58 59 msgid "Phone:" 60 msgstr "GSM Number:" 61 62 msgid "Study Course" 63 msgstr "Course of Study" 64 65 msgid "Study Course:" 66 msgstr "Course of Study:" 67 68 msgid "Desired Study Courses" 69 msgstr "Desired Courses of Study" 70 71 msgid "Previous Study Course" 72 msgstr "Previous Course of Study" 73 74 msgid "${a}: Study Course" 75 msgstr "${a}: Course of Study" 76 77 msgid "${a}: Previous Study Course" 78 msgstr "${a}: Previous Course of Study" -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/browser.py
r11864 r11873 210 210 211 211 class ExportPDFAdmissionNotificationPage(UtilityView, grok.View): 212 """Deliver a PDF Admission no stification slip.212 """Deliver a PDF Admission notification slip. 213 213 """ 214 214 grok.context(ICustomStudent) … … 336 336 return students_utils.renderPDF( 337 337 self, 'registration_slip.pdf', 338 self.context.student, studentview, signatures= ([_('Bursar')],),338 self.context.student, studentview, signatures=None, 339 339 omit_fields=self.omit_fields, 340 340 note=post_text_registration) 341 341 342 post_text_registration = """<br /><br /> <br /><br />343 <strong>IMPORTANT ANTNOTICE</strong>342 post_text_registration = """<br /><br /> 343 <strong>IMPORTANT NOTICE</strong> 344 344 <br /><br /> 345 This registration slip must be su bmitted before attendance of lectures. Note that:<br /><br />345 This registration slip must be supplied before attendance of lectures. Note that:<br /><br /> 346 346 1. All fees due must be paid in full.<br /><br /> 347 347 2. All information required must be available on the Registration Form.<br /><br /> 348 348 3. The Signature of all appropriate Polytechnic Authority must be obtained.<br /><br /> 349 349 4. The endorsed Registration Form should be returned to the respective Institutes and Administrative Offices.<br /><br /> 350 5. No student may change his subject or course of study as shown in the signed Registration Form without clearance from Admissions Office and the Director of the appropriate Institute. 350 5. No student may change his subject or course of study as shown in the signed Registration Form without clearance from the Admissions Office and the Director of the appropriate Institute.<br /><br /> 351 6. All candidates admitted into the HND I programmes should submit the photocopies of their original certificates of ND and SSCE with scratch card online for clearance latest a week after the admission is offered. Failure to comply with this directive may lead to the forfeiture of the admission.<br /><br /> 352 353 M.O. Adebayo<br /> 354 Admission Officer<br /> 355 For: Registrar 351 356 """ 352 357 … … 354 359 <strong>INSTRUCTIONS TO FRESHERS</strong> 355 360 <br /><br /> 356 You are hereby offered a provisional admission for the 201 3/2014session subject to the conditions that:361 You are hereby offered a provisional admission for the 2014/2015 session subject to the conditions that: 357 362 <br /><br /> 358 363 1. The information given in your Application Form is correct.<br /><br /> … … 368 373 11. You are prepared to take up accommodation provided on the campuses by the authority.<br /><br /> 369 374 12. There will be no refund of school fees once paid.<br /><br /> 370 13. If you accept this offer with above stated conditions, please make a photocopy of this document and return it to the Admission Office immediately.<br /><br /> 371 14. You possess the entry requirement for the programme you are admitted into before making payment of school fees and registration.<br /><br /> 375 13. If you accept this offer with the above stated conditions, please make a photocopy of this document and return it to the Admission Office immediately.<br /><br /> 376 14. You possess the entry requirement for the programme you are admitted.<br /><br /> 377 378 M.O. Adebayo<br /> 379 Admission Officer<br /> 380 For: Registrar 372 381 """ -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/tests/test_browser.py
r11865 r11873 439 439 self.browser.getControl(name="form.password").value = 'spwd' 440 440 self.browser.getControl("Login").click() 441 self.browser.getLink(" Study Course").click()441 self.browser.getLink("Course of Study").click() 442 442 self.browser.getLink("Add course list").click() 443 443 self.assertMatches('...Add current level 100 (Year 1)...',
Note: See TracChangeset for help on using the changeset viewer.