Changeset 16135
- Timestamp:
- 28 Jun 2020, 18:11:16 (4 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_templates/applicanteditpage.pt
r15991 r16135 22 22 <tbody> 23 23 <tal:widgets content="structure provider:widgets" /> 24 <tr tal:condition="python: context.__parent__. with_picture">24 <tr tal:condition="python: context.__parent__.picture_editable"> 25 25 <td class="fieldname" i18n:translate=""> 26 26 Passport Photo: -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/utils.py
r15991 r16135 104 104 (applicant.no_copies-1) * GATEWAY_AMT 105 105 return 106 107 def isPictureEditable(self, container): 108 """False if applicants are not allowed to edit uploaded pictures. 109 """ 110 return container.with_picture and \ 111 not container.prefix.startswith('utme') and \ 112 not container.prefix.startswith('ude')
Note: See TracChangeset for help on using the changeset viewer.