Changeset 9377 for main/kofacustom.nigeria/trunk/src/kofacustom/nigeria
- Timestamp:
- 22 Oct 2012, 05:15:19 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/viewlets.py
r9241 r9377 228 228 download_name = u'alr_scan' 229 229 230 # Certificate230 # JAMB Letter/Certificate 231 231 232 232 class CertificateDisplay(FileDisplay): 233 """ Certificate display viewlet.233 """JAMB Letter/Certificate display viewlet. 234 234 """ 235 235 grok.order(9) 236 label = _(u' Certificate')237 title = _(u' Certificate')236 label = _(u'JAMB Letter/Certificate') 237 title = _(u'JAMB Letter/Certificate') 238 238 download_name = u'cert' 239 239 … … 242 242 243 243 class CertificateUpload(FileUpload): 244 """ Certificate upload viewlet.244 """JAMB Letter/Certificate upload viewlet. 245 245 """ 246 246 grok.order(9) 247 label = _(u' Certificate')248 title = _(u' Certificate Scan')247 label = _(u'JAMB Letter/Certificate') 248 title = _(u'JAMB Letter/Certificate Scan') 249 249 mus = 1024 * 150 250 250 download_name = u'cert' 251 251 252 252 class CertificateImage(Image): 253 """Renders Certificate scan.253 """Renders JAMB Letter/Certificate scan. 254 254 """ 255 255 grok.name('cert') … … 388 388 """ 389 389 grok.order(14) 390 label = _(u' Referee Letter')391 title = _(u' Referee Letter')390 label = _(u'Guarantor/Referee Letter') 391 title = _(u'Guarantor/Referee Letter') 392 392 download_name = u'ref_let' 393 393 … … 399 399 """ 400 400 grok.order(14) 401 label = _(u' Referee Letter')402 title = _(u' Referee Letter Scan')401 label = _(u'Guarantor/Referee Letter') 402 title = _(u'Guarantor/Referee Letter Scan') 403 403 mus = 1024 * 150 404 404 download_name = u'ref_let' … … 480 480 download_name = u'ref_let3' 481 481 482 # Statutory Declarationof Good Conduct482 # Affidavit (former Statutory Declaration) of Good Conduct 483 483 484 484 class StatutoryDeclarationDisplay(FileDisplay): … … 486 486 """ 487 487 grok.order(17) 488 label = _(u' Statutory Declarationof Good Conduct')489 title = _(u' Statutory Declarationof Good Conduct')488 label = _(u'Affidavit of Good Conduct') 489 title = _(u'Affidavit of Good Conduct') 490 490 download_name = u'stat_dec' 491 491 … … 497 497 """ 498 498 grok.order(17) 499 label = _(u' Statutory Declarationof Good Conduct')500 title = _(u' Statutory Declarationof Good Conduct Scan')499 label = _(u'Affidavit of Good Conduct') 500 title = _(u'Affidavit of Good Conduct Scan') 501 501 mus = 1024 * 150 502 502 download_name = u'stat_dec' 503 503 504 504 class StatutoryDeclarationImage(Image): 505 """Renders Statutory Declarationof Good Conduct scan.505 """Renders Affidavit of Good Conduct scan. 506 506 """ 507 507 grok.name('stat_dec') 508 508 download_name = u'stat_dec' 509 509 510 # Affidavit of Non-Menbership of Secret Cults 511 512 class SecrCultsStatementDisplay(FileDisplay): 513 """Affidavit of Non-Menbership of Secret Cults display viewlet. 514 """ 515 grok.order(18) 516 label = _(u'Affidavit of Non-Menbership of Secret Cults') 517 title = _(u'Affidavit of Non-Menbership of Secret Cults') 518 download_name = u'secr_cults' 519 520 class SecrCultsStatementSlip(SecrCultsStatementDisplay): 521 grok.view(ExportPDFClearanceSlipPage) 522 523 class SecrCultsStatementUpload(FileUpload): 524 """Affidavit of Non-Menbership of Secret Cults upload viewlet. 525 """ 526 grok.order(18) 527 label = _(u'Affidavit of Non-Menbership of Secret Cults') 528 title = _(u'Affidavit of Non-Menbership of Secret Cults Scan') 529 mus = 1024 * 150 530 download_name = u'secr_cults' 531 532 class ResultStatementImage(Image): 533 """Renders Affidavit of Non-Menbership of Secret Cults scan. 534 """ 535 grok.name('secr_cults') 536 download_name = u'secr_cults' 537 510 538 # Letter of Admission (PG Students only) 511 539 … … 513 541 """Letter of Admission display viewlet. 514 542 """ 515 grok.order(1 8)543 grok.order(19) 516 544 label = _(u'Letter of Admission') 517 545 title = _(u'Letter of Admission') … … 524 552 """Letter of Admission upload viewlet. 525 553 """ 526 grok.order(1 8)554 grok.order(19) 527 555 label = _(u'Letter of Admission') 528 556 title = _(u'Letter of Admission Scan')
Note: See TracChangeset for help on using the changeset viewer.