- Timestamp:
- 24 Aug 2015, 06:34:28 (9 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt
r11254 r13217 35 35 </div> 36 36 <div id="tab2" class="tab-pane"> 37 <br /> 38 This container contains <span tal:replace="python: context.counts[0]-context.counts[1]">UNUSED</span> unused pre-filled records.<br /> 37 39 <tal:showApplicants condition="view/showApplicants"> 38 40 <br /> … … 53 55 </thead> 54 56 <tbody> 55 <tr tal:repeat="appl context/values">57 <tr tal:repeat="appl python:[appl for appl in context.values() if appl.container_code.endswith('+')]"> 56 58 <td> 57 59 <input type="checkbox" name="val_id" tal:attributes="value appl/__name__" /> -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt
r11254 r13217 54 54 <th i18n:translate="">Records 55 55 </th> 56 <th i18n:translate="">Application Deadline 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> 67 <td tal:content="python:len(entry)">YEAR</td> 69 <td tal:content="python: len(entry)">RECORDS</td> 70 <td><span tal:content="python: layout.formatDatetime(entry.enddate)"> 71 END</span></td> 68 72 </tr> 69 73 </tbody>
Note: See TracChangeset for help on using the changeset viewer.