source: main/waeup.ikoba/trunk/src/waeup/ikoba/browser/templates/datacenterlogspage.pt @ 12444

Last change on this file since 12444 was 11949, checked in by Henrik Bettermann, 10 years ago

Change of name.

File size: 1.1 KB
Line 
1<div i18n:domain="waeup.ikoba" tal:define="files view/files">
2  <p i18n:translate="" tal:condition="not: files">
3  Currently no log files are available.
4  </p>
5  <table tal:condition="files" class="table">
6    <thead>
7      <tr>
8        <th>
9        </th>
10        <th i18n:translate="">File
11        </th>
12        <th i18n:translate="">Date
13        </th>
14      </tr>
15    </thead>
16    <tbody>
17      <tr tal:repeat="file files">
18        <td>
19          <form method="POST" action="@@show">
20            <input i18n:translate="" type="submit" class="btn btn-primary"
21                   name="show" tal:attributes="value view/show_button" />
22            <input type="hidden" name="logname"
23                   tal:attributes="value file/name" />
24          </form></td>
25        <td tal:content="file/name">file.name</td>
26        <td tal:content="file/uploaddate">Fri Jan 15 17:44:25 2010</td>
27      </tr>
28    </tbody>
29  </table>
30  <form method="POST">
31    <input i18n:translate="" type="submit" class="btn btn-default" name="back"
32        tal:attributes="value view/back_button"/>
33  </form>
34</div>
Note: See TracBrowser for help on using the repository browser.