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

version 1.2, 2006/03/19 03:26:56 version 1.5, 2006/04/05 14:16:26
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>
   
Line 12 Line 15
 <tal:block tal:condition="authorized">  <tal:block tal:condition="authorized">
   
     <!-- log in message -->      <!-- log in message -->
     <div class="logout" style="float:right"><a href="/users/login.html?logout">log out</a></div>      <div class="logout" style="float:right">
           <a href="/users/?logout">log out</a></div>
     <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>      <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>
           
     <!-- id selected: manage set -->      <!-- option box ?! -->
     <tal:block tal:condition="python:here.checkPermission('admin')">      <div class="optionBox" 
     <a href="manageBasket">Manage this set</a>          tal:condition="python: here.checkPermission('edit')" 
           tal:define="global currentBasket here/getCurrentBasket">        
     <h1 tal:content="here/title">Title</h1>      <i tal:condition="python: 
           currentBasket and (here.title == currentBasket.title)">This is the <br>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>
           
     <div class="comment_basket" tal:content="structure here/comment">Comment</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>
           
       <div style="height:2px;background-color:white;margin-bottom:3px;"> </div>
     <tal:x tal:repeat="item here/getBasketObjects">      <tal:x tal:repeat="item here/getBasketObjects">
      <div tal:condition="item/linkToObject"><a tal:attributes="href item/linkToObject">          <div tal:content="structure item/content_html"
         <div tal:replace="structure item/content_html"/></a>              style="background-color:#d7d7d7;margin-bottom:3px;"/>
      </div>          <!--<div style="height:2px;background-color:#d7d7d7;margin-bottom:3px;"> </div-->
      <div tal:condition="not:item/linkToObject">  
         <div tal:replace="structure item/content_html"/>  
      </div>  
      <br>  
      <div tal:content="structure item/comment"/>       <div tal:content="structure item/comment"/>
               <div style="height:2px;background-color:white;margin:5px 5px 10px 0px;"> </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.5


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