- Timestamp:
- 9 Oct 2019, 09:14:07 (5 years ago)
- Location:
- main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/tests/test_export.py
r15468 r15651 78 78 'marit_stat,matric_number,middlename,nationality,' 79 79 'next_kin_address,next_kin_name,next_kin_phone,next_kin_relation,' 80 'nysc_lga,nysc_location,nysc_year,officer_comment, '80 'nysc_lga,nysc_location,nysc_year,officer_comment,parents_email,' 81 81 'perm_address,personal_updated,phone,physical_clearance_date,' 82 82 'provisionally_cleared,reg_number,' … … 87 87 '"[(\'accounts\', \'A\')]",my clr code,1981-02-04#,,,' 88 88 'anna@sample.com,,,,,,,,,,,,,Anna,,,,,,"[(\'accounts\', \'A\')]"' 89 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,, '89 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,,' 90 90 '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,,123,,,,,' 91 91 '"[(\'accounts\', \'A\')]",,f,A111111,0,,,created,' -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/utils.py
r13126 r15651 38 38 STUDENT_EXPORTER_NAMES = StudentsUtils().STUDENT_EXPORTER_NAMES + ( 39 39 'clearancerequested',) 40 41 # Maximum size of upload files in kB 42 MAX_KB = 250 -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/viewlets.py
r14881 r15651 98 98 label = _(u'Acceptance Letter') 99 99 title = _(u'Acceptance Letter Scan') 100 mus = 1024 * 250101 100 download_name = u'acc_let' 102 101 tab_redirect = '?tab2' … … 127 126 label = _(u'LGA Identification') 128 127 title = _(u'LGA Identification Scan') 129 mus = 1024 * 250130 128 download_name = u'lga_ident' 131 129 … … 155 153 label = _(u'First Sitting Result') 156 154 title = _(u'First Sitting Result Scan') 157 mus = 1024 * 250158 155 download_name = u'fst_sit_scan' 159 156 … … 183 180 label = _(u'Second Sitting Result') 184 181 title = _(u'Second Sitting Result Scan') 185 mus = 1024 * 250186 182 download_name = u'scd_sit_scan' 187 183 … … 211 207 label = _(u'Higher Qualification Result') 212 208 title = _(u'Higher Qualification Result Scan') 213 mus = 1024 * 250214 209 download_name = u'hq_scan' 215 210 … … 239 234 label = _(u'Second Higher Qualification Result') 240 235 title = _(u'Second Higher Qualification Result Scan') 241 mus = 1024 * 250242 236 download_name = u'hq_scan2' 243 237 … … 271 265 label = _(u'Advanced Level Result') 272 266 title = _(u'Advanced Level Result Scan') 273 mus = 1024 * 250274 267 download_name = u'alr_scan' 275 268 … … 299 292 label = _(u'Certificate') 300 293 title = _(u'Certificate Scan') 301 mus = 1024 * 250302 294 download_name = u'cert' 303 295 … … 327 319 label = _(u'Second Certificate') 328 320 title = _(u'Second Certificate Scan') 329 mus = 1024 * 250330 321 download_name = u'cert2' 331 322 … … 359 350 label = _(u'Third Certificate') 360 351 title = _(u'Third Certificate Scan') 361 mus = 1024 * 250362 352 download_name = u'cert3' 363 353 … … 391 381 label = _(u'Evidence of Name') 392 382 title = _(u'Evidence of Name Scan') 393 mus = 1024 * 250394 383 download_name = u'evid' 395 384 … … 419 408 label = _(u'Result Statement') 420 409 title = _(u'Result Statement Scan') 421 mus = 1024 * 250422 410 download_name = u'res_stat' 423 411 … … 447 435 label = _(u'Guarantor/Referee Letter') 448 436 title = _(u'Guarantor/Referee Letter Scan') 449 mus = 1024 * 250450 437 download_name = u'ref_let' 451 438 … … 475 462 label = _(u'Second Referee Letter') 476 463 title = _(u'Second Referee Letter Scan') 477 mus = 1024 * 250478 464 download_name = u'ref_let2' 479 465 … … 507 493 label = _(u'Third Referee Letter') 508 494 title = _(u'Third Referee Letter Scan') 509 mus = 1024 * 250510 495 download_name = u'ref_let3' 511 496 … … 539 524 label = _(u'Affidavit of Good Conduct') 540 525 title = _(u'Affidavit of Good Conduct Scan') 541 mus = 1024 * 250542 526 download_name = u'stat_dec' 543 527 … … 567 551 label = _(u'Letter of Admission') 568 552 title = _(u'Letter of Admission Scan') 569 mus = 1024 * 250570 553 download_name = u'admission_let' 571 554
Note: See TracChangeset for help on using the changeset viewer.