[10298] | 1 | ## $Id: browser.py 13997 2016-06-28 17:00:24Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """UI components for basic applicants and related components. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
| 21 | import os |
---|
[13996] | 22 | from zope.component import getUtility, getAdapter |
---|
| 23 | from zope.i18n import translate |
---|
[10298] | 24 | from waeup.kofa.interfaces import ( |
---|
[13996] | 25 | IExtFileStore, IFileStoreNameChooser, IKofaUtils) |
---|
[10298] | 26 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
| 27 | from waeup.kofa.utils.helpers import string_from_bytes, file_size |
---|
[13996] | 28 | from waeup.kofa.applicants.browser import ( |
---|
| 29 | ApplicantCheckStatusPage, ApplicantBaseDisplayFormPage) |
---|
[13538] | 30 | from waeup.kofa.applicants.viewlets import PDFActionButton |
---|
[13996] | 31 | from waeup.kofa.browser.layout import UtilityView |
---|
| 32 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
| 33 | from waeup.kofa.interfaces import IPDF |
---|
| 34 | from waeup.kofa.applicants.interfaces import IApplicant |
---|
[13997] | 35 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
[10298] | 36 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
| 37 | from kofacustom.nigeria.applicants.browser import ( |
---|
| 38 | NigeriaApplicantDisplayFormPage, |
---|
| 39 | NigeriaApplicantManageFormPage, |
---|
| 40 | NigeriaApplicantEditFormPage, |
---|
| 41 | NigeriaPDFApplicationSlip, |
---|
[10929] | 42 | NigeriaApplicantRegistrationPage, |
---|
[11755] | 43 | NigeriaExportPDFPaymentSlipPage, |
---|
[13545] | 44 | ) |
---|
| 45 | from kofacustom.nigeria.applicants.interfaces import OMIT_DISPLAY_FIELDS |
---|
[10298] | 46 | from waeup.aaue.applicants.interfaces import ( |
---|
| 47 | ICustomUGApplicant, |
---|
[13544] | 48 | ICustomUGApplicantEdit, |
---|
[13996] | 49 | ITranscriptApplicant, |
---|
| 50 | ICustomApplicant |
---|
[11291] | 51 | ) |
---|
[10298] | 52 | |
---|
[13545] | 53 | UG_OMIT_FIELDS = ( |
---|
| 54 | 'hq_type', 'hq_fname', 'hq_matric_no', |
---|
| 55 | 'hq_degree', 'hq_school', 'hq_session', 'hq_disc', |
---|
| 56 | 'hq_type2', 'hq_fname2', 'hq_matric_no2', |
---|
| 57 | 'hq_degree2', 'hq_school2', 'hq_session2', 'hq_disc2', |
---|
| 58 | 'hq_type3', 'hq_fname3', 'hq_matric_no3', |
---|
[13679] | 59 | 'hq_degree3', 'hq_school3', 'hq_session3', 'hq_disc3', |
---|
| 60 | 'nysc_year', |
---|
| 61 | 'nysc_location', |
---|
| 62 | 'nysc_lga', |
---|
| 63 | 'employer', |
---|
| 64 | 'emp_position', |
---|
| 65 | 'emp_start', |
---|
| 66 | 'emp_end', |
---|
| 67 | 'emp_reason', |
---|
| 68 | 'employer2', |
---|
| 69 | 'emp2_position', |
---|
| 70 | 'emp2_start', |
---|
| 71 | 'emp2_end', |
---|
| 72 | 'emp2_reason', |
---|
| 73 | 'former_matric', |
---|
[13545] | 74 | ) |
---|
[13546] | 75 | UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( |
---|
[13977] | 76 | 'jamb_subjects_list', 'master_sheet_number') + UG_OMIT_FIELDS |
---|
[13545] | 77 | UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + UG_OMIT_FIELDS + ( |
---|
| 78 | 'reg_number','alr_fname', 'alr_no', 'alr_date', |
---|
| 79 | 'alr_results', 'notice') |
---|
[13546] | 80 | UG_OMIT_MANAGE_FIELDS = ( |
---|
| 81 | 'special_application','jamb_subjects_list',) + UG_OMIT_FIELDS |
---|
| 82 | UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( |
---|
[13545] | 83 | 'student_id', |
---|
| 84 | 'notice', |
---|
| 85 | 'jamb_age', |
---|
| 86 | 'jamb_subjects', |
---|
| 87 | 'jamb_score', |
---|
| 88 | 'jamb_reg_number', |
---|
[13679] | 89 | 'aggregate', |
---|
[13977] | 90 | |
---|
| 91 | 'firstname', |
---|
| 92 | 'middlename', |
---|
| 93 | 'lastname', |
---|
| 94 | 'sex', |
---|
| 95 | 'lga', |
---|
| 96 | 'course1', |
---|
| 97 | 'master_sheet_number', |
---|
[13996] | 98 | 'screening_venue', |
---|
| 99 | 'screening_score', |
---|
| 100 | 'screening_date' |
---|
[13679] | 101 | ) |
---|
[10298] | 102 | |
---|
[13545] | 103 | #UG_OMIT_PDF_FIELDS = tuple([ |
---|
| 104 | # element for element in UG_OMIT_PDF_FIELDS if not element == 'phone']) |
---|
[11291] | 105 | |
---|
[13545] | 106 | #UG_OMIT_PDF_FIELDS += ( |
---|
| 107 | # 'reg_number','alr_fname', 'alr_no', 'alr_date', |
---|
| 108 | # 'alr_results', 'notice' |
---|
| 109 | # ) |
---|
[13538] | 110 | |
---|
[13545] | 111 | PG_OMIT_FIELDS = ( |
---|
| 112 | 'fst_sit_fname', |
---|
| 113 | 'fst_sit_no', |
---|
| 114 | 'fst_sit_date', |
---|
| 115 | 'fst_sit_type', |
---|
| 116 | 'fst_sit_results', |
---|
| 117 | 'scd_sit_fname', |
---|
| 118 | 'scd_sit_no', |
---|
| 119 | 'scd_sit_date', |
---|
| 120 | 'scd_sit_type', |
---|
| 121 | 'scd_sit_results', |
---|
[13977] | 122 | #'programme_type', |
---|
[13546] | 123 | 'jamb_age', |
---|
| 124 | 'jamb_subjects', |
---|
| 125 | 'jamb_score', |
---|
| 126 | 'jamb_reg_number', |
---|
| 127 | 'aggregate' |
---|
[13545] | 128 | ) |
---|
| 129 | PG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( |
---|
| 130 | 'jamb_subjects_list',) + PG_OMIT_FIELDS |
---|
| 131 | PG_OMIT_PDF_FIELDS = PG_OMIT_DISPLAY_FIELDS + PG_OMIT_FIELDS + ( |
---|
| 132 | 'reg_number','alr_fname', 'alr_no', 'alr_date', |
---|
[13679] | 133 | 'alr_results', 'notice', |
---|
| 134 | 'nysc_year', |
---|
| 135 | 'nysc_location', |
---|
| 136 | 'nysc_lga', |
---|
| 137 | 'former_matric', |
---|
| 138 | ) |
---|
[13545] | 139 | PG_OMIT_MANAGE_FIELDS = ( |
---|
| 140 | 'special_application','jamb_subjects_list',) + PG_OMIT_FIELDS |
---|
[13546] | 141 | PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( |
---|
[13545] | 142 | 'student_id', |
---|
| 143 | 'notice', |
---|
[13546] | 144 | ) |
---|
[13545] | 145 | |
---|
[13679] | 146 | PTEE_OMIT_FIELDS = ( |
---|
| 147 | 'jamb_age', |
---|
| 148 | 'jamb_subjects', |
---|
| 149 | 'jamb_score', |
---|
| 150 | 'jamb_reg_number', |
---|
| 151 | 'aggregate' |
---|
| 152 | ) |
---|
| 153 | PTEE_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( |
---|
| 154 | 'jamb_subjects_list',) + PTEE_OMIT_FIELDS |
---|
| 155 | PTEE_OMIT_PDF_FIELDS = PTEE_OMIT_DISPLAY_FIELDS + PTEE_OMIT_FIELDS + ( |
---|
| 156 | 'reg_number','alr_fname', 'alr_no', 'alr_date', |
---|
| 157 | 'alr_results', 'notice', |
---|
| 158 | 'nysc_year', |
---|
| 159 | 'nysc_location', |
---|
| 160 | 'nysc_lga', |
---|
| 161 | 'employer', |
---|
| 162 | 'emp_position', |
---|
| 163 | 'emp_start', |
---|
| 164 | 'emp_end', |
---|
| 165 | 'emp_reason', |
---|
| 166 | 'employer2', |
---|
| 167 | 'emp2_position', |
---|
| 168 | 'emp2_start', |
---|
| 169 | 'emp2_end', |
---|
| 170 | 'emp2_reason', |
---|
| 171 | 'former_matric', |
---|
| 172 | ) |
---|
| 173 | PTEE_OMIT_MANAGE_FIELDS = ( |
---|
| 174 | 'special_application','jamb_subjects_list',) + PTEE_OMIT_FIELDS |
---|
| 175 | PTEE_OMIT_EDIT_FIELDS = PTEE_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( |
---|
| 176 | 'student_id', |
---|
| 177 | 'notice', |
---|
| 178 | ) |
---|
| 179 | |
---|
[10298] | 180 | class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage): |
---|
| 181 | """A display view for applicant data. |
---|
| 182 | """ |
---|
| 183 | |
---|
| 184 | @property |
---|
| 185 | def form_fields(self): |
---|
[13538] | 186 | if self.target is not None and self.target == 'trans': |
---|
[13544] | 187 | form_fields = grok.AutoFields(ITranscriptApplicant).omit( |
---|
| 188 | 'locked', 'suspended') |
---|
| 189 | form_fields['dispatch_address'].custom_widget = BytesDisplayWidget |
---|
| 190 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
| 191 | return form_fields |
---|
[13538] | 192 | # AAUE is using the same interface for all regular applications. |
---|
[11291] | 193 | form_fields = grok.AutoFields(ICustomUGApplicant) |
---|
[13538] | 194 | if self.target is not None and self.target.startswith('pg'): |
---|
| 195 | for field in PG_OMIT_DISPLAY_FIELDS: |
---|
| 196 | form_fields = form_fields.omit(field) |
---|
[13967] | 197 | elif self.target is not None and self.target in ('ptee', 'ude'): |
---|
[13679] | 198 | for field in PTEE_OMIT_DISPLAY_FIELDS: |
---|
[10298] | 199 | form_fields = form_fields.omit(field) |
---|
| 200 | else: |
---|
| 201 | for field in UG_OMIT_DISPLAY_FIELDS: |
---|
| 202 | form_fields = form_fields.omit(field) |
---|
| 203 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
| 204 | form_fields['notice'].custom_widget = BytesDisplayWidget |
---|
| 205 | if not getattr(self.context, 'student_id'): |
---|
| 206 | form_fields = form_fields.omit('student_id') |
---|
| 207 | if not getattr(self.context, 'screening_score'): |
---|
| 208 | form_fields = form_fields.omit('screening_score') |
---|
| 209 | if not getattr(self.context, 'screening_venue'): |
---|
| 210 | form_fields = form_fields.omit('screening_venue') |
---|
| 211 | if not getattr(self.context, 'screening_date'): |
---|
| 212 | form_fields = form_fields.omit('screening_date') |
---|
| 213 | return form_fields |
---|
| 214 | |
---|
[13538] | 215 | class CustomPDFActionButton(PDFActionButton): |
---|
| 216 | |
---|
| 217 | @property |
---|
| 218 | def target_url(self): |
---|
[13540] | 219 | if self.context.state in ('initialized', 'started', 'paid') \ |
---|
[13541] | 220 | or self.context.special or self.view.target == 'trans': |
---|
[13540] | 221 | return |
---|
| 222 | return self.view.url(self.view.context, self.target) |
---|
[13538] | 223 | |
---|
| 224 | |
---|
[10298] | 225 | class CustomPDFApplicationSlip(NigeriaPDFApplicationSlip): |
---|
| 226 | |
---|
[10311] | 227 | column_two_fields = ('applicant_id', 'reg_number', |
---|
| 228 | 'firstname', 'middlename', 'lastname', 'sex', 'date_of_birth') |
---|
[13679] | 229 | #two_columns_design_fields = [ |
---|
| 230 | # 'fst_sit_fname', 'fst_sit_no', 'fst_sit_date', |
---|
| 231 | # 'fst_sit_type', 'fst_sit_results', |
---|
| 232 | # 'scd_sit_fname', 'scd_sit_no', 'scd_sit_date', |
---|
| 233 | # 'scd_sit_type', 'scd_sit_results'] |
---|
[10311] | 234 | |
---|
[10301] | 235 | @property |
---|
| 236 | def note(self): |
---|
| 237 | if self.context.sex == 'm': |
---|
| 238 | pronoun = 'he' |
---|
| 239 | else: |
---|
| 240 | pronoun = 'she' |
---|
| 241 | return ''' |
---|
[10897] | 242 | The applicant has acknowledged that, if discovered at any time that %s does not possess |
---|
| 243 | any of the qualifications which %s claims %s has obtained, %s will be expelled from the |
---|
| 244 | University not be re-admitted for the same or any other programme, even if %s has |
---|
| 245 | upgraded previous and shall qualifications or possess additional qualifications. |
---|
[10331] | 246 | ''' % ( |
---|
[10301] | 247 | pronoun, pronoun, pronoun, pronoun, pronoun) |
---|
[10298] | 248 | |
---|
| 249 | @property |
---|
| 250 | def form_fields(self): |
---|
[13538] | 251 | # AAUE is using the same interface for all regular applications. |
---|
[11291] | 252 | form_fields = grok.AutoFields(ICustomUGApplicant) |
---|
[13538] | 253 | if self.target is not None and self.target.startswith('pg'): |
---|
| 254 | for field in PG_OMIT_PDF_FIELDS: |
---|
| 255 | form_fields = form_fields.omit(field) |
---|
[13967] | 256 | elif self.target is not None and self.target in ('ptee', 'ude'): |
---|
[13679] | 257 | for field in PTEE_OMIT_PDF_FIELDS: |
---|
[10298] | 258 | form_fields = form_fields.omit(field) |
---|
| 259 | else: |
---|
| 260 | for field in UG_OMIT_PDF_FIELDS: |
---|
| 261 | form_fields = form_fields.omit(field) |
---|
| 262 | if not getattr(self.context, 'student_id'): |
---|
| 263 | form_fields = form_fields.omit('student_id') |
---|
| 264 | if not getattr(self.context, 'screening_score'): |
---|
| 265 | form_fields = form_fields.omit('screening_score') |
---|
| 266 | if not getattr(self.context, 'screening_venue'): |
---|
| 267 | form_fields = form_fields.omit('screening_venue') |
---|
| 268 | if not getattr(self.context, 'screening_date'): |
---|
| 269 | form_fields = form_fields.omit('screening_date') |
---|
| 270 | return form_fields |
---|
| 271 | |
---|
| 272 | class CustomApplicantManageFormPage(NigeriaApplicantManageFormPage): |
---|
| 273 | """A full edit view for applicant data. |
---|
| 274 | """ |
---|
| 275 | |
---|
| 276 | @property |
---|
| 277 | def form_fields(self): |
---|
[13538] | 278 | if self.target is not None and self.target == 'trans': |
---|
[13544] | 279 | form_fields = grok.AutoFields(ITranscriptApplicant) |
---|
[13538] | 280 | form_fields['applicant_id'].for_display = True |
---|
| 281 | return form_fields |
---|
| 282 | # AAUE is using the same interface for all regular applications. |
---|
[11291] | 283 | form_fields = grok.AutoFields(ICustomUGApplicant) |
---|
[13538] | 284 | if self.target is not None and self.target.startswith('pg'): |
---|
| 285 | for field in PG_OMIT_MANAGE_FIELDS: |
---|
| 286 | form_fields = form_fields.omit(field) |
---|
[13967] | 287 | elif self.target is not None and self.target in ('ptee', 'ude'): |
---|
[13679] | 288 | for field in PTEE_OMIT_MANAGE_FIELDS: |
---|
[10298] | 289 | form_fields = form_fields.omit(field) |
---|
| 290 | else: |
---|
| 291 | for field in UG_OMIT_MANAGE_FIELDS: |
---|
| 292 | form_fields = form_fields.omit(field) |
---|
| 293 | form_fields['student_id'].for_display = True |
---|
| 294 | form_fields['applicant_id'].for_display = True |
---|
| 295 | return form_fields |
---|
| 296 | |
---|
| 297 | class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): |
---|
| 298 | """An applicant-centered edit view for applicant data. |
---|
| 299 | """ |
---|
| 300 | |
---|
[13547] | 301 | grok.template('applicanteditpage') |
---|
[13541] | 302 | |
---|
[10298] | 303 | @property |
---|
| 304 | def form_fields(self): |
---|
[13538] | 305 | if self.target is not None and self.target == 'trans': |
---|
[13544] | 306 | form_fields = grok.AutoFields(ITranscriptApplicant).omit( |
---|
| 307 | 'locked', 'suspended') |
---|
[13538] | 308 | form_fields['applicant_id'].for_display = True |
---|
| 309 | return form_fields |
---|
| 310 | # AAUE is using the same interface for all regular applications. |
---|
[11291] | 311 | form_fields = grok.AutoFields(ICustomUGApplicantEdit) |
---|
[13538] | 312 | if self.target is not None and self.target.startswith('pg'): |
---|
| 313 | for field in PG_OMIT_EDIT_FIELDS: |
---|
| 314 | form_fields = form_fields.omit(field) |
---|
[13967] | 315 | elif self.target is not None and self.target in ('ptee', 'ude'): |
---|
[13679] | 316 | for field in PTEE_OMIT_EDIT_FIELDS: |
---|
[10298] | 317 | form_fields = form_fields.omit(field) |
---|
| 318 | else: |
---|
| 319 | for field in UG_OMIT_EDIT_FIELDS: |
---|
| 320 | form_fields = form_fields.omit(field) |
---|
| 321 | form_fields['applicant_id'].for_display = True |
---|
| 322 | form_fields['reg_number'].for_display = True |
---|
| 323 | return form_fields |
---|
[10929] | 324 | |
---|
| 325 | class CustomApplicantRegistrationPage(NigeriaApplicantRegistrationPage): |
---|
| 326 | """Captcha'd registration page for applicants. |
---|
| 327 | """ |
---|
| 328 | |
---|
| 329 | def _redirect(self, email, password, applicant_id): |
---|
| 330 | # Forward email and credentials to landing page. |
---|
| 331 | self.redirect(self.url(self.context, 'registration_complete', |
---|
| 332 | data = dict(email=email, password=password, |
---|
| 333 | applicant_id=applicant_id))) |
---|
[11755] | 334 | return |
---|
| 335 | |
---|
| 336 | class CustomExportPDFPaymentSlipPage(NigeriaExportPDFPaymentSlipPage): |
---|
| 337 | |
---|
| 338 | @property |
---|
| 339 | def payment_slip_download_warning(self): |
---|
[13422] | 340 | return '' |
---|
| 341 | |
---|
| 342 | class CustomApplicantCheckStatusPage(ApplicantCheckStatusPage): |
---|
| 343 | """Captcha'd status checking page for applicants. |
---|
| 344 | """ |
---|
| 345 | grok.template('applicantcheckstatus') |
---|
[13996] | 346 | |
---|
[13997] | 347 | class PaymentReceiptActionButton(ManageActionButton): |
---|
| 348 | grok.order(8) # This button should always be the last one. |
---|
| 349 | grok.context(ICustomApplicant) |
---|
| 350 | grok.view(CustomApplicantDisplayFormPage) |
---|
| 351 | grok.require('waeup.viewApplication') |
---|
| 352 | icon = 'actionicon_pdf.png' |
---|
| 353 | text = _('Download screening invitation letter') |
---|
| 354 | target = 'screening_invitation.pdf' |
---|
[13996] | 355 | |
---|
[13997] | 356 | @property |
---|
| 357 | def target_url(self): |
---|
| 358 | if not self.context.screening_date: |
---|
| 359 | return '' |
---|
| 360 | return self.view.url(self.view.context, self.target) |
---|
| 361 | |
---|
[13996] | 362 | class ExportScreeningInvitationLetter(UtilityView, grok.View): |
---|
| 363 | """Deliver a slip with only screening data. |
---|
| 364 | This form page is available only in AAUE. |
---|
| 365 | """ |
---|
[13997] | 366 | grok.context(ICustomApplicant) |
---|
[13996] | 367 | grok.name('screening_invitation.pdf') |
---|
| 368 | grok.require('waeup.viewApplication') |
---|
| 369 | prefix = 'form' |
---|
| 370 | |
---|
| 371 | label = u'Screening Invitation Letter' |
---|
| 372 | |
---|
| 373 | form_fields = [] |
---|
| 374 | |
---|
| 375 | @property |
---|
| 376 | def note(self): |
---|
| 377 | if self.context.screening_date: |
---|
| 378 | return """ |
---|
| 379 | <br /><br /><br /><br /><font size='12'> |
---|
| 380 | Dear %s, |
---|
| 381 | <br /><br /> |
---|
[13997] | 382 | You are invited for your screening exercise. |
---|
[13996] | 383 | <br /><br /> |
---|
[13997] | 384 | <strong>Date/Time: %s |
---|
[13996] | 385 | <br /><br /> |
---|
[13997] | 386 | Venue: %s |
---|
| 387 | </strong> |
---|
[13996] | 388 | <br /><br /> |
---|
[13997] | 389 | Please bring along this letter of invitation on your screening date. |
---|
[13996] | 390 | </font> |
---|
| 391 | |
---|
| 392 | """ % (self.context.display_fullname, |
---|
| 393 | self.context.screening_date, |
---|
| 394 | self.context.screening_venue) |
---|
| 395 | return |
---|
| 396 | |
---|
| 397 | @property |
---|
| 398 | def title(self): |
---|
| 399 | return None |
---|
| 400 | |
---|
| 401 | def update(self): |
---|
| 402 | if not self.context.screening_date: |
---|
| 403 | self.flash(_('Forbidden'), type="warning") |
---|
| 404 | self.redirect(self.url(self.context)) |
---|
| 405 | |
---|
| 406 | def render(self): |
---|
| 407 | applicantview = ApplicantBaseDisplayFormPage(self.context, self.request) |
---|
| 408 | students_utils = getUtility(IStudentsUtils) |
---|
| 409 | return students_utils.renderPDF(self,'screening_data.pdf', |
---|
| 410 | self.context, applicantview, note=self.note) |
---|