File:  [Repository] / OSAS / OSA_system / zpt / archiveStatus.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Wed Mar 3 13:02:55 2004 UTC (20 years, 4 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
moved templates to zpt

    1: <html metal:use-macro="here/main_template/macros/page">
    2:   <head>
    3:     
    4:     <title metal:fill-slot="title">Archive</title>
    5: 
    6:     <meta metal:fill-slot="meta" http-equiv="refresh" content="3; URL=archive4"/>
    7: 
    8:   </head>
    9:   <body>
   10:    <div metal:fill-slot="nav_titel">Archiving</div>
   11:    <div metal:fill-slot="body">
   12:     <h2>Second step: Archive the data</h2> 
   13: <p>Archiving may takes a long time, if you want you can close your browser. Archiving will go on.</p> 
   14: <span tal:define="i python:0">
   15: <table  tal:define="check python:here.REQUEST.SESSION['archiver']">
   16: <div tal:repeat="ret python:check.messages()" tal:define="i python:i+1">
   17: <tr>
   18: <td>
   19: <span tal:replace="python:ret.getError()[0]"/>
   20: </td>
   21: <td>
   22: <td tal:condition="python:ret.getError()[1][1]=='ok'">
   23: <img src="images/ok.gif">
   24: </td>
   25: <td tal:condition="python:ret.getError()[1][1]=='error'">
   26: <img src="images/fail.gif">
   27: </td>
   28: <td tal:condition="python:ret.getError()[1][1]=='running'">
   29: <b>running</b>
   30: </td>
   31: </tr>
   32: <tr>
   33: <td colspan='2' tal:content="structure python:ret.getError()[1][0]"/>
   34: 
   35: </tr>
   36: </div>
   37: </table>
   38: </span>
   39: 
   40: 
   41: 
   42: </div>
   43:   </body>
   44: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>