Changeset 4910
- Timestamp:
- 27 Jan 2010, 13:18:31 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/trunk/src/waeup/browser/templates/datacenterlogspage.pt
r4858 r4910 1 <h2>Available Batch Logs</h2>1 <h2>Available Log Files</h2> 2 2 3 3 <p> 4 Here you can see the logfiles of batch operations like mass import, 5 removal or update of data. 4 Here you can see the local logfiles. 6 5 </p> 7 6 <p> 8 Use the buttons on the right to examine or deletethe files.7 Use the buttons on the right to examine the files. 9 8 </p> 10 9 … … 16 15 <thead> 17 16 <tr> 18 <th> File</th><th>User/Date</th><th>Operation/Status</th><th></th>17 <th></th><th>File</th><th>Date</th><th>Size</th> 19 18 </tr> 20 19 </thead> … … 22 21 <tr tal:repeat="file files" 23 22 tal:attributes="class python: repeat['file'].odd() and 'odd' or 'even'"> 24 <td tal:content="file/name">file.name</td> 25 <td> 26 <div> 27 <span tal:content="file/userid">zope.manager</span> 28 <span tal:content="file/uploaddate">Fri Jan 15 17:44:25 2010</span> 29 </div> 30 </td> 31 <td> 32 <div> 33 <span tal:content="file/mode">create</span> 34 </div> 35 <div> 36 <span tal:content="file/stats">12 lines(12 okay/0 failed)</span> 37 </div> 38 </td> 39 <td class="text-right"> 23 <td class="text-center"> 40 24 <form method="POST"> 41 25 <input type="submit" name="show" value="Show" /> 42 <input type="submit" name="remove" value="Delete" />43 26 <input type="hidden" name="logname" 44 27 tal:attributes="value file/name" /> 45 28 </form> 46 29 </td> 30 <td tal:content="file/name">file.name</td> 31 <td tal:content="file/uploaddate">Fri Jan 15 17:44:25 2010</td> 32 <td tal:content="file/getSize">12 bytes</td> 47 33 </tr> 48 34 </tbody>
Note: See TracChangeset for help on using the changeset viewer.