Diff for /basket/zpt/BasketMain_template_standard.zpt between versions 1.2 and 1.10

version 1.2, 2006/03/19 03:26:56 version 1.10, 2006/04/18 09:48:27
Line 1 Line 1
 <html metal:use-macro="here/main_template/macros/page">  <html metal:use-macro="here/main_template/macros/page">
 <head>  <head>
 <title>Default</title>  <title>Default</title>
   <style metal:fill-slot="additionalStyles" type="text/css">
   td.vario { background-color:#AC1D15 }
   </style>
 </head>  </head>
 <body>  <body>
   
 <!-- span = bodytext -->  <!-- span = bodytext -->
 <span metal:fill-slot="body" tal:omit-tag="">  <span metal:fill-slot="body" tal:omit-tag="">
 <tal:block tal:define="authorized python:here.isAuthorized()">  <tal:block tal:define="authorized python:1 or here.checkPermission('authorized')">
   
 <!-- user is logged in -->  <!-- user is logged in -->
 <tal:block tal:condition="authorized">  <tal:block tal:condition="authorized">
   
     <!-- log in message -->      <!-- option box ?! -->
     <div class="logout" style="float:right"><a href="/users/login.html?logout">log out</a></div>      <div class="optionBox" 
     <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>          tal:condition="python: here.checkPermission('edit')" 
               tal:define="global currentBasket here/getCurrentBasket">        
     <!-- id selected: manage set -->      <i tal:condition="python: 
     <tal:block tal:condition="python:here.checkPermission('admin')">          currentBasket and (here.id == currentBasket.id)">This is the active set</i>
     <a href="manageBasket">Manage this set</a>      <a class="editLink" 
           tal:condition="not: python: currentBasket and (here.id == currentBasket.id)" 
     <h1 tal:content="here/title">Title</h1>          tal:attributes=" 
                   href python: 'selectThisBasketAsCurrent?target=/users/setFolder/' + here.id"
     <div class="comment_basket" tal:content="structure here/comment">Comment</div>      >Make this <br>your active set.</a>
       
     <tal:x tal:repeat="item here/getBasketObjects">  
      <div tal:condition="item/linkToObject"><a tal:attributes="href item/linkToObject">  
         <div tal:replace="structure item/content_html"/></a>  
      </div>  
      <div tal:condition="not:item/linkToObject">  
         <div tal:replace="structure item/content_html"/>  
      </div>       </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 python: here.formatAscii(here.vlp.link2html(here.comment))">Comment</div>
      <br>       <br>
      <div tal:content="structure item/comment"/>  
           
       <div class="seperator"> </div>
       <tal:x tal:repeat="item here/getBasketObjects">
           <div class="setItem" tal:condition="item/content_html" 
               tal:content="structure item/content_html"
           />
           <div class="setItemComment" tal:condition="item/comment"  
               tal:content="structure python: 
                   here.formatAscii(here.vlp.link2html(item.comment))"
           />
           <div class="seperator"> </div>
     </tal:x>      </tal:x>
           
       
 </tal:block>  </tal:block>
   
   
 <!-- user is not logged in -->  <!-- user is not logged in -->
 <tal:block tal:condition="not: authorized">  <tal:block tal:condition="not: authorized">
     <h3>No access</h3>      <h3>No access</h3>
     <p>You sre not authorized to access this page, please <a href="/users/login.html">log in</a>.</p>      <p>You are not authorized to access this page, please <a href="/users/">log in</a>.</p>
 </tal:block>  
 </tal:block>  </tal:block>
   
 </tal:block>  </tal:block>
   
 </span>  </span>
 <!-- ende bodytext -->  <!-- ende bodytext -->
 </body>  </body>

Removed from v.1.2  
changed lines
  Added in v.1.10


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