File:  [Repository] / cdli / zpt / showlockResponse.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Fri May 15 13:13:31 2009 UTC (15 years, 1 month ago) by dwinter
Branches: MAIN
CVS tags: HEAD
arbeit an admin funktionen

    1: <html>
    2: <head>
    3: <title>Locks </title>
    4: </head>
    5: <body tal:define="alllocks python:options['ret']">
    6: <h1>Locks</h1>
    7: <ul>
    8: <li tal:repeat="us python:alllocks.keys()">
    9: 	<span tal:content="us"/>
   10: 	<ul>
   11: 		<li tal:repeat="fl python:alllocks[us]">
   12: 			<span tal:replace="python:fl">
   13: 			</span>
   14: 		</li>	
   15: 		</ul>
   16: </li>
   17: </ul>
   18: <ul tal:condition="not:python:len(options['ret'])>0">
   19: 	<li>No locks </li>
   20: </ul>
   21: </body>
   22: </html>

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