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

version 1.5, 2006/04/05 14:16:26 version 1.6, 2006/04/05 17:09:14
Line 14  td.vario { background-color:#AC1D15 } Line 14  td.vario { background-color:#AC1D15 }
 <!-- user is logged in -->  <!-- user is logged in -->
 <tal:block tal:condition="authorized">  <tal:block tal:condition="authorized">
   
     <!-- log in message -->  
     <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>  
       
     <!-- option box ?! -->      <!-- option box ?! -->
     <div class="optionBox"       <div class="optionBox" 
         tal:condition="python: here.checkPermission('edit')"           tal:condition="python: here.checkPermission('edit')" 
         tal:define="global currentBasket here/getCurrentBasket">                  tal:define="global currentBasket here/getCurrentBasket">        
     <i tal:condition="python:       <i tal:condition="python: 
         currentBasket and (here.title == currentBasket.title)">This is the <br>active set</i>          currentBasket and (here.title == currentBasket.title)">This is the active set</i>
     <a class="editLink" tal:condition="not: python:       <a class="editLink" tal:condition="not: python: 
         currentBasket and (here.title == currentBasket.title)"           currentBasket and (here.title == currentBasket.title)" 
         href="selectThisBasketAsCurrent">Make this your active set.</a>          href="selectThisBasketAsCurrent">Make this your active set.</a>
Line 39  td.vario { background-color:#AC1D15 } Line 34  td.vario { background-color:#AC1D15 }
         tal:content="structure here/shortDescription">shortDescription</div><br>          tal:content="structure here/shortDescription">shortDescription</div><br>
     <div class="setComment"       <div class="setComment" 
         tal:content="structure here/comment">Comment</div>          tal:content="structure here/comment">Comment</div>
       <br>
           
     <div style="height:2px;background-color:white;margin-bottom:3px;"> </div>      <div class="seperator"> </div>
     <tal:x tal:repeat="item here/getBasketObjects">      <tal:x tal:repeat="item here/getBasketObjects">
         <div tal:content="structure item/content_html"          <div tal:condition="item/content_html" tal:content="structure item/content_html"
             style="background-color:#d7d7d7;margin-bottom:3px;"/>              class="setItem"/>
         <!--<div style="height:2px;background-color:#d7d7d7;margin-bottom:3px;"> </div-->          <div tal:condition="item/comment"  tal:content="structure item/comment"
         <div tal:content="structure item/comment"/>              class="setItemComment"/>
         <div style="height:2px;background-color:white;margin:5px 5px 10px 0px;"> </div>          <div class="seperator"> </div>
    </tal:x>     </tal:x>
           
 </tal:block>  </tal:block>

Removed from v.1.5  
changed lines
  Added in v.1.6


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