Changeset 15841 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 22 Nov 2019, 12:43:00 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r15835 r15841 261 261 self.context, attr='stateresult.pdf') 262 262 if pdf: 263 html += '<a href="stateresult.pdf">Statement of Result</a>' 263 html += '<a href="%s">Statement of Result</a>' % self.url( 264 self.context, 'stateresult.pdf') 264 265 pdf = getUtility(IExtFileStore).getFileByContext( 265 266 self.context, attr='verificationdoc.pdf') 266 267 if pdf: 267 html += '<a href="verificationdoc.pdf">Result/Certificate Document</a>' 268 html += '<a href="%s">Result/Certificate Document</a>' % self.url( 269 self.context, 'verificationdoc.pdf') 268 270 return html 269 271 -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicantdisplaypage.pt
r15835 r15841 28 28 <tr> 29 29 <td colspan=2> 30 31 30 <span tal:replace="structure view/file_links" /> 32 33 31 </td> 34 32 </tr> -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r15745 r15841 65 65 'gst_registration_2': 'Registration Fee GST222', 66 66 'ent_registration_1': 'Registration Fee ENT201', 67 'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)',67 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 68 68 'restitution': 'Restitution Fee', 69 69 } … … 97 97 'gst_registration_2': 'Registration Fee GST222', 98 98 'ent_registration_1': 'Registration Fee ENT201', 99 'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)',99 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 100 100 'restitution': 'Restitution Fee', 101 101 } … … 172 172 'gst_registration_2': 'Registration Fee GST222', 173 173 'ent_registration_1': 'Registration Fee ENT201', 174 'fac_dep': 'Faculty and Departmental Dues ',174 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 175 175 'restitution': 'Restitution Fee', 176 176 }
Note: See TracChangeset for help on using the changeset viewer.