Diff for /basket/zpt/BasketFolder_template_standard.zpt between versions 1.12 and 1.13

version 1.12, 2007/08/14 18:28:17 version 1.13, 2007/08/15 15:49:03
Line 1 Line 1
 <html metal:use-macro="here/main_template/macros/page">  <html metal:use-macro="here/main_template/macros/page">
 <head>  <head>
     <meta http-equiv="content-type" content="text/html; charset=utf-8">
 <title>Default</title>  <title>Default</title>
 <style metal:fill-slot="additionalStyles" type="text/css">  <style metal:fill-slot="additionalStyles" type="text/css">
 td.vario { background-color:#AC1D15 }   td.vario { background-color:#AC1D15 } 
Line 60  td.vario { background-color:#AC1D15 } Line 61  td.vario { background-color:#AC1D15 }
             tal:condition="isActive">- active set -</i>              tal:condition="isActive">- active set -</i>
                           
         <a class="setTitleLink" tal:condition="item/title"           <a class="setTitleLink" tal:condition="item/title" 
             tal:attributes="href item/absolute_url" tal:content="item/title"/>              tal:attributes="href item/absolute_url" tal:content="item/getTitle"/>
         <a class="setTitleLink" tal:condition="not: item/title"           <a class="setTitleLink" tal:condition="not: item/title" 
             tal:attributes="href item/absolute_url" tal:content="python:'Untitled Set'"/>              tal:attributes="href item/absolute_url" tal:content="python:'Untitled Set'"/>
         <i class="small"           <i class="small" 
             tal:condition="python:               tal:condition="python: 
                 mode == 'private' and here.getActualUserName() != item.owner"                   mode == 'private' and here.getActualUserName() != item.owner" 
             tal:content="python:              tal:content="python:
                 ' [shared set, created by ' + item.owner.split('@')[0] + ']'"                   ' [shared set, created by ' + item.getOwner().split('@')[0] + ']'" 
         /><i class="small"           /><i class="small" 
             tal:condition="python: mode == 'open_intern' and item.owner != here.getActualUserName()"               tal:condition="python: mode == 'open_intern' and item.owner != here.getActualUserName()" 
             tal:content="python:              tal:content="python:
                 ' [created by ' + item.owner + ']'"                   ' [created by ' + item.getOwner() + ']'" 
         /><i class="small"           /><i class="small" 
             tal:condition="python: mode == 'open_intern' and item.owner == here.getActualUserName()"               tal:condition="python: mode == 'open_intern' and item.owner == here.getActualUserName()" 
             tal:content="python:              tal:content="python:
                 ' [your set]'" />                  ' [your set]'" />
         <div class="TOC" tal:content="structure item/shortDescription"/>          <div class="TOC" tal:content="structure item/getShortDescription"/>
     </tal:block>      </tal:block>
           
     <form action="setFolder/addBasket"       <form action="setFolder/addBasket" 

Removed from v.1.12  
changed lines
  Added in v.1.13


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