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

version 1.9, 2006/04/18 09:48:27 version 1.10, 2007/08/14 18:28:17
Line 31  td.vario { background-color:#AC1D15 } Line 31  td.vario { background-color:#AC1D15 }
         tal:define="currentBasket here/getCurrentBasket"           tal:define="currentBasket here/getCurrentBasket" 
         tal:repeat="item python:here.getSets(mode=mode)">          tal:repeat="item python:here.getSets(mode=mode)">
     <hr>      <hr>
     <div style="text-indent: -25px;padding-left:25px;">          <a class="setTitleLink" tal:condition="item/title" 
         <div style="float:right">              tal:attributes="href item/absolute_url" tal:content="item/title"/>
           <a class="setTitleLink" tal:condition="not: item/title" 
               tal:attributes="href item/absolute_url" tal:content="python:'Untitled Set'"/>
           <i class="small" style="white-space:nowrap" 
               tal:condition="python: 
                   mode == 'private' and here.getActualUserName() != item.owner" 
               tal:content="python:
                   ' [shared set, created by ' + item.owner.split('@')[0] + ']'" 
           /><br clear="all">
       <div style="padding-left:25px;">
           <div style="float:right;vertical-align:right;white-space:nowrap">
             <span tal:omit-tag=""              <span tal:omit-tag=""
                 tal:condition="python:                   tal:condition="python: 
                     currentBasket is None  or (currentBasket and (item.id != currentBasket.id))">                             currentBasket is None  or (currentBasket and (item.id != currentBasket.id))">       
Line 52  td.vario { background-color:#AC1D15 } Line 62  td.vario { background-color:#AC1D15 }
                 onclick="return window.confirm(                  onclick="return window.confirm(
                     'Do you really want to remove this item?\nThis is not undoable.')">delete</a>                      'Do you really want to remove this item?\nThis is not undoable.')">delete</a>
         </div>          </div>
         <a class="setTitleLink" tal:attributes="href item/absolute_url" tal:content="item/title"/>  
         <i class="small" style="white-space:nowrap"   
             tal:condition="python:   
                 mode == 'private' and here.getActualUserName() != item.owner"   
             tal:content="python:  
                 ' [shared set, created by ' + item.owner + ']'"   
         /><br>  
         move: <a tal:attributes="          move: <a tal:attributes="
             class python:'editLink';               class python:'editLink'; 
             href python:'moveTop?id=%s'%item.getId()">top</a>              href python:'moveTop?id=%s'%item.getId()">top</a>

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


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