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 ago) by dwinter
Branches: MAIN
CVS tags: HEAD
arbeit an admin funktionen

<html>
<head>
<title>Locks </title>
</head>
<body tal:define="alllocks python:options['ret']">
<h1>Locks</h1>
<ul>
<li tal:repeat="us python:alllocks.keys()">
	<span tal:content="us"/>
	<ul>
		<li tal:repeat="fl python:alllocks[us]">
			<span tal:replace="python:fl">
			</span>
		</li>	
		</ul>
</li>
</ul>
<ul tal:condition="not:python:len(options['ret'])>0">
	<li>No locks </li>
</ul>
</body>
</html>

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