File:  [Repository] / basket / zpt / BasketFolder_template_standard.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Mon Apr 3 11:05:04 2006 UTC (18 years, 2 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
mainor

<html metal:use-macro="here/main_template/macros/page">
<head>
<title>Default</title>
<style metal:fill-slot="additionalStyles" type="text/css">
td.vario { background-color:#AC1D15 } 
</style>
</head>
<body>

<!-- span = bodytext -->
<span metal:fill-slot="body" tal:omit-tag="">
<tal:block tal:define="authorized python:here.isAuthorized()">

<!-- user is logged in -->
	<!-- log in message -->
	<div class="logout" style="float:right"><a href="/users/login.html?logout">log out</a></div>
	<div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>
	
	<!-- id selected: manage set -->
	<tal:block tal:condition="python:here.isAuthorized('edit')">
	<a href="manageBasketFolder">Manage set overview</a>
    </tal:block>
</tal:block>
	<h1>Sets</h1>
	
	<tal:x tal:repeat="item python:here.getSets(mode=options.get('mode',None))">
	 <a tal:attributes="href item/absolute_url">
	 	<h2 tal:content="item/title"/>
	 </a>
	
	 <p tal:content="structure item/shortDescription"/>
	
	 <br>

    
	</tal:x>
	
</span>
</body>
</html>

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