Changeset 4910


Ignore:
Timestamp:
27 Jan 2010, 13:18:31 (15 years ago)
Author:
uli
Message:

Let logfile overview page reflect the new logfile system.

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>
    22
    33<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.
    65</p>
    76<p>
    8   Use the buttons on the right to examine or delete the files.
     7  Use the buttons on the right to examine the files.
    98</p>
    109
     
    1615    <thead>
    1716      <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>
    1918      </tr>
    2019    </thead>
     
    2221      <tr tal:repeat="file files"
    2322          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">
    4024          <form method="POST">
    4125            <input type="submit" name="show" value="Show" />
    42             <input type="submit" name="remove" value="Delete" />
    4326            <input type="hidden" name="logname"
    4427                   tal:attributes="value file/name" />
    4528          </form>
    4629        </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>
    4733      </tr>
    4834    </tbody>
Note: See TracChangeset for help on using the changeset viewer.