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

version 1.9, 2006/04/07 17:44:40 version 1.10, 2006/04/18 09:48:27
Line 19  td.vario { background-color:#AC1D15 } Line 19  td.vario { background-color:#AC1D15 }
         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 active set</i>          currentBasket and (here.id == currentBasket.id)">This is the active set</i>
     <a class="editLink" tal:condition="not: python:       <a class="editLink" 
         currentBasket and (here.title == currentBasket.title)"           tal:condition="not: python: currentBasket and (here.id == currentBasket.id)" 
         href="selectThisBasketAsCurrent">Make this your active set.</a>          tal:attributes=" 
               href python: 'selectThisBasketAsCurrent?target=/users/setFolder/' + here.id"
       >Make this <br>your active set.</a>
     </div>      </div>
   
     <h2 class="setTitle"><span tal:replace="here/title"/>      <h2 class="setTitle"><span tal:replace="here/title"/>
Line 38  td.vario { background-color:#AC1D15 } Line 40  td.vario { background-color:#AC1D15 }
           
     <div class="seperator"> </div>      <div class="seperator"> </div>
     <tal:x tal:repeat="item here/getBasketObjects">      <tal:x tal:repeat="item here/getBasketObjects">
         <div tal:condition="item/content_html" tal:content="structure item/content_html"          <div class="setItem" tal:condition="item/content_html" 
             class="setItem"/>              tal:content="structure item/content_html"
         <div tal:condition="item/comment"  tal:content="structure python: here.formatAscii(here.vlp.link2html(item.comment))"          />
             class="setItemComment"/>          <div class="setItemComment" tal:condition="item/comment"  
               tal:content="structure python: 
                   here.formatAscii(here.vlp.link2html(item.comment))"
           />
         <div class="seperator"> </div>          <div class="seperator"> </div>
    </tal:x>     </tal:x>
           

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


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