Changeset 13307 for main/waeup.kwarapoly
- Timestamp:
- 12 Oct 2015, 07:02:23 (9 years ago)
- Location:
- main/waeup.kwarapoly/trunk/src/waeup/kwarapoly
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/locales/en/LC_MESSAGES/waeup.kofa.po
r11873 r13307 77 77 msgid "${a}: Previous Study Course" 78 78 msgstr "${a}: Previous Course of Study" 79 80 msgid "Course Registration Slip" 81 msgstr "Course Profile Slip" 82 83 msgid "Download course registration slip" 84 msgstr "Download course profile slip" -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/browser.py
r13061 r13307 221 221 'student_id', 'reg_number') 222 222 223 @property 224 def label(self): 225 line0 = 'Registration Bio Data - B' 226 line1 = 'Admission Letter of %s' % self.context.display_fullname 227 return '%s\n%s' % (line0, line1) 228 223 229 def render(self): 224 230 if self.context.state in (CREATED, ADMITTED, … … 239 245 grok.require('waeup.viewStudent') 240 246 prefix = 'form' 241 label = ' Notification of Provisional Admission'247 label = 'Registration Bio Data - A\nNotification of Provisional Admission' 242 248 243 249 omit_fields = ('date_of_birth', 'current_level') … … 392 398 'current_mode', 'matric_number', 'date_of_birth', 'current_level') 393 399 title = 'Clearance and Personal Data' 394 label = ' Profile RegistrationSlip'400 label = 'Registration Bio Data - C\nProfile Data Slip' 395 401 396 402 form_fields = grok.AutoFields(ICustomStudent).select( … … 451 457 <strong>INSTRUCTIONS TO FRESHERS</strong> 452 458 <br /><br /> 453 You are hereby offered a provisional admission for the 2014/2015 session subject to the conditions that: 459 You are hereby offered a provisional admission for the current academic 460 session subject to the conditions that: 454 461 <br /><br /> 455 462 1. The information given in your Application Form is correct. … … 482 489 10. The Polytechnic reserves the right to withdraw your admission at 483 490 any stage, if you are found to be a cultist or an expelled 484 individual from any tertiary institution. 491 individual from any tertiary institution. In addition, it should be 492 noted that the Polytechnic will not entertain any change of name 493 different from the one filled by the candidate on his/her Application 494 Form. 485 495 <br /><br /> 486 496 11. You are prepared to take up accommodation provided on the campuses -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/tests/test_browser.py
r13306 r13307 450 450 # A level with one course ticket was created 451 451 self.browser.getLink("100").click() 452 self.browser.getLink("Download course registrationslip").click()452 self.browser.getLink("Download course profile slip").click() 453 453 self.assertEqual(self.browser.headers['Status'], '200 Ok') 454 454 self.assertEqual(self.browser.headers['Content-Type'],
Note: See TracChangeset for help on using the changeset viewer.