Changeset 8547 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 29 May 2012, 14:16:23 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r8524 r8547 323 323 pnav = 3 324 324 325 @property 326 def showApplicants(self): 327 if len(self.context) < 5000: 328 return True 329 return False 330 325 331 def update(self): 326 332 datepicker.need() # Enable jQuery datepicker in date fields. -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt
r8314 r8547 34 34 </div> 35 35 <div id="tab-2" tal:attributes="class view/tab2"> 36 36 <tal:showApplicants condition="view/showApplicants"> 37 37 <input type="checkbox" onClick="toggle(this, 'val_id')" /> 38 38 <span i18n:translate="">Select all</span> … … 84 84 </span> 85 85 </div> 86 </tal:showApplicants> 87 <tal:showNoApplicants condition="not: view/showApplicants"> 88 <p i18n:translate="note_armp"> 89 There are more than 5000 application records in this container. 90 In order to prevent from downloading big amounts of data, the 91 Applicants tab has been disabled. Please use the 92 <a tal:attributes="href python: view.url(layout.site, 'applicants/search')"> 93 search form</a> 94 for accessing application records. 95 </p> 96 </tal:showNoApplicants> 86 97 </div> 87 98 <div id="tab-3" tal:attributes="class view/tab3"> <br /> -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt
r8406 r8547 54 54 <th i18n:translate="">Title 55 55 </th> 56 <th i18n:translate="">Records 57 </th> 56 58 </tr> 57 59 </thead> … … 65 67 tal:content="entry/__name__">CODE</a> </td> 66 68 <td tal:content="entry/title">TITLE</td> 69 <td tal:content="python:len(entry)">YEAR</td> 67 70 </tr> 68 71 </tbody>
Note: See TracChangeset for help on using the changeset viewer.