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

<html metal:use-macro="here/main_template/macros/page">
  <head>
    <title metal:fill-slot="title">Running Processes</title>
<meta metal:fill-slot="meta" http-equiv="refresh" content="30; URL=/mpiwg/storage/processes" />
  </head>
  <body metal:fill-slot="body" tal:define="check python:here.getoverview('/var/tmp/archiver')">
<h2>Last and ongoing archiving processes</h2>
<table tal:define="retlist python:check.messages()">
<div tal:omit-tag tal:repeat="ret retlist">
<tr>
<td>
<span tal:replace="python:ret.getError()[0]"/>
</td>
<td>
<td tal:condition="python:ret.getError()[1][1]=='ok'">
<img src="images/ok.gif">
</td>
<td tal:condition="python:ret.getError()[1][1]=='error'">
<img src="images/fail.gif">
</td>
<td tal:condition="python:ret.getError()[1][1]=='running'">
<b>running</b>
</td>
<td>
<!--<div tal:omit-tag tal:define="dummy python:here.storeFile(retlist)"/>

<p tal:replace="python:retlist"/>-->
<a target="_blank" tal:attributes="href python:'view?number='+str(retlist.index(ret))">view status</a>
</td>
</tr>

  
    </div>
</table>
   </body>
</html>

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