File:  [Repository] / basket / zpt / BasketMain_template_standard.zpt
Revision 1.8: download - view: text, annotated - select for diffs - revision graph
Thu Apr 6 16:49:14 2006 UTC (18 years, 2 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
new navigation

<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.checkPermission('authorized')">

<!-- user is logged in -->
<tal:block tal:condition="authorized">

	<!-- option box ?! -->
	<div class="optionBox" 
		tal:condition="python: here.checkPermission('edit')" 
		tal:define="global currentBasket here/getCurrentBasket">		
	<i tal:condition="python: 
		currentBasket and (here.title == currentBasket.title)">This is the active set</i>
	<a class="editLink" tal:condition="not: python: 
		currentBasket and (here.title == currentBasket.title)" 
		href="selectThisBasketAsCurrent">Make this your active set.</a>
	</div>

	<h2 class="setTitle"><span tal:replace="here/title"/>
		<span tal:condition="python: here.checkPermission('edit')">
			<a class="editLink" href="manageBasket">| Edit</a></span>
	</h2>
	
	<div class="setDescription" 
		tal:content="structure here/shortDescription">shortDescription</div><br>
	<div class="setComment" 
		tal:content="structure here/comment">Comment</div>
	<br>
	
	<div class="seperator"> </div>
	<tal:x tal:repeat="item here/getBasketObjects">
		<div tal:condition="item/content_html" tal:content="structure item/content_html"
			class="setItem"/>
		<div tal:condition="item/comment"  tal:content="structure python: here.formatAscii(here.vlp.link2html(item.comment))"
			class="setItemComment"/>
		<div class="seperator"> </div>
   </tal:x>
	
</tal:block>


<!-- user is not logged in -->
<tal:block tal:condition="not: authorized">
	<h3>No access</h3>
	<p>You are not authorized to access this page, please <a href="/users/">log in</a>.</p>
</tal:block>

</tal:block>

</span>
<!-- ende bodytext -->
</body>
</html>

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