Ignore:
Timestamp:
22 Nov 2019, 12:43:00 (5 years ago)
Author:
Henrik Bettermann
Message:

Fix links.

Change fac_dep category title.

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  
    261261            self.context, attr='stateresult.pdf')
    262262        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')
    264265        pdf = getUtility(IExtFileStore).getFileByContext(
    265266            self.context, attr='verificationdoc.pdf')
    266267        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')
    268270        return html
    269271
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicantdisplaypage.pt

    r15835 r15841  
    2828      <tr>
    2929        <td colspan=2>
    30  
    3130          <span tal:replace="structure view/file_links" />
    32 
    3331        </td>
    3432      </tr>
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r15745 r15841  
    6565        'gst_registration_2': 'Registration Fee GST222',
    6666        '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)',
    6868        'restitution': 'Restitution Fee',
    6969        }
     
    9797        'gst_registration_2': 'Registration Fee GST222',
    9898        '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)',
    100100        'restitution': 'Restitution Fee',
    101101        }
     
    172172        'gst_registration_2': 'Registration Fee GST222',
    173173        'ent_registration_1': 'Registration Fee ENT201',
    174         'fac_dep': 'Faculty and Departmental Dues',
     174        'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)',
    175175        'restitution': 'Restitution Fee',
    176176        }
Note: See TracChangeset for help on using the changeset viewer.