Changeset 16327 for main/waeup.kofa/trunk
- Timestamp:
- 21 Nov 2020, 14:27:22 (4 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r16299 r16327 4 4 1.6.1.dev0 (unreleased) 5 5 ======================= 6 7 * Make maximum number of applicants on `ApplicantsContainerManageFormPage` 8 customizable. 6 9 7 10 * Implement bulk emailing. -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r16243 r16327 378 378 grok.require('waeup.manageApplication') 379 379 doclink = DOCLINK + '/applicants.html' 380 max_applicants = 2000 380 381 381 382 @property … … 387 388 @property 388 389 def showApplicants(self): 389 if self.context.counts[1] < 1000:390 if self.context.counts[1] < self.max_applicants: 390 391 return True 391 392 return False -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt
r15964 r16327 90 90 <tal:showNoApplicants condition="not: view/showApplicants"> 91 91 <p i18n:translate="note_acmp"> 92 There are more than 1000 application records in this container. 92 There are more than 93 <span tal:replace="view/max_applicants">MAX_APPLICANTS</span> 94 application records in this container. 93 95 In order to prevent from downloading big amounts of data, the 94 96 Applicants tab has been disabled. Please use the
Note: See TracChangeset for help on using the changeset viewer.