Changeset 7198 for main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser_templates/batchcontainer.pt
- Timestamp:
- 25 Nov 2011, 13:35:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser_templates/batchcontainer.pt
r6427 r7198 10 10 <tr> 11 11 <th> </th> 12 13 12 <th>Prefix</th><th>Entries/(invalidated)</th><th>Cost</th> 13 <th>Created</th><th>Creator</th> 14 14 </tr> 15 15 </thead> 16 16 <tbody> 17 17 <tr tal:repeat="batch context/values" 18 tal:attributes="class python: repeat['batch'].odd() and 'even' or 'odd'"> 19 <td> 20 <input type="checkbox" name="batches" value="batch/prefix" 21 tal:attributes="value batch/__name__" /> 22 </td> 23 <td> 24 <span tal:replace="batch/prefix">APP</span> 25 - 26 <span tal:replace="batch/num">10</span> 27 </td> 28 <td> 29 <span tal:replace="batch/entry_num">1012</span> 30 / 31 <span tal:replace="batch/used_num">512</span> 32 </td> 33 <td tal:content="batch/cost">12.12</td> 34 <td tal:content="python: batch.creation_date.ctime()">2009/12/24</td> 35 <td tal:content="batch/creator">some user</td> 18 tal:attributes="class python: repeat['batch'].odd() and 'even' or 'odd'"> 19 <td> 20 <input type="checkbox" name="batches" value="batch/prefix" 21 tal:attributes="value batch/__name__" /> 22 </td> 23 <td> 24 <span tal:replace="batch/prefix">APP</span> 25 - 26 <span tal:replace="batch/num">10</span> 27 </td> 28 <td> 29 <span tal:replace="batch/entry_num">1012</span> 30 / 31 <span tal:replace="batch/used_num">512</span> 32 </td> 33 <td tal:content="batch/cost">12.12</td> 34 <td tal:content="python: batch.creation_date.strftime('%Y-%m-%d %H:%M:%S')"> 35 2011-11-22 18:04:55 36 </td> 37 <td tal:content="batch/creator">some user</td> 36 38 </tr> 37 39 <tr tal:condition="not: context/values"> 38 40 <td colspan="5"><b>No batches yet</b></td> 39 41 </tr> 40 42 </tbody>
Note: See TracChangeset for help on using the changeset viewer.