Changeset 15841 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 22 Nov 2019, 12:43:00 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Files:
-
- 2 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>
Note: See TracChangeset for help on using the changeset viewer.