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

version 1.4, 2006/04/03 17:46:43 version 1.5, 2006/04/05 14:16:26
Line 20  td.vario { background-color:#AC1D15 } Line 20  td.vario { background-color:#AC1D15 }
     <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>      <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>
           
     <!-- option box ?! -->      <!-- option box ?! -->
     <div class="optionBox" tal:condition="python: here.checkPermission('edit')">              <div class="optionBox" 
         <a class="editLink" href="selectThisBasketAsCurrent">Make this your active set.</a>          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 <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>
   
     <h2 class="setTitle"><span tal:replace="here/title"/>      <h2 class="setTitle"><span tal:replace="here/title"/>
Line 33  td.vario { background-color:#AC1D15 } Line 39  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>
     <hr>  
           
       <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">          <div tal:content="structure item/content_html"
         <a tal:attributes="href item/linkToObject">              style="background-color:#d7d7d7;margin-bottom:3px;"/>
         <div tal:replace="structure item/content_html"/></a>          <!--<div style="height:2px;background-color:#d7d7d7;margin-bottom:3px;"> </div-->
      </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"/>
      <hr>          <div style="height:2px;background-color:white;margin:5px 5px 10px 0px;"> </div>
     </tal:x>      </tal:x>
           
 </tal:block>  </tal:block>

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


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