Diff for /basket/zpt/BasketFolder_manage_template_standard.zpt between versions 1.1 and 1.2

version 1.1, 2006/03/02 19:57:32 version 1.2, 2006/04/03 17:46:43
Line 1 Line 1
 <html metal:use-macro="here/main_template/macros/page">  <html metal:use-macro="here/main_template/macros/page">
 <head>  <head>
 <title>Default</title>  <title>Default</title>
   <style metal:fill-slot="additionalStyles" type="text/css">
   td.vario { background-color:#AC1D15 } 
   </style>
 </head>  </head>
 <body>  <body>
   
Line 11 Line 14
 <!-- user is logged in -->  <!-- user is logged in -->
 <tal:block tal:condition="python:here.isAuthorized('edit')">  <tal:block tal:condition="python:here.isAuthorized('edit')">
     <!-- log in message -->      <!-- log in message -->
     <div class="logout" style="float:right"><a href="/users/login.html?logout">log out</a></div>      <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>      <div class="userName">logged in as <span tal:content="here/getActualUserName"/></div>
           
     <!-- id selected: manage set -->      <!-- id selected: manage set -->
   
           
     <h3>Manage set overview</h3>      <h2><span 
           tal:condition="python: options.get('mode', None) == 'private'" 
           tal:replace="python:'My '" /><span 
           tal:condition="python: options.get('mode', None) == 'open_internal'" 
           tal:replace="python:'User '" /><span 
           tal:condition="python: options.get('mode', None) == 'open'" 
           tal:replace="python:'Public '" />Sets</h2>
           
       <h3>Edit this Overview:</h3>
           
     <div class="item" tal:repeat="item here/getObjects">      <div class="item" tal:repeat="item here/getObjects">
     <hr>      <hr>
      <div>       <div>
         <a tal:attributes="href python:'moveTop?id=%s'%item.getId()">top</a>          <span style="float:right">
         <a tal:attributes="href python:'moveUp?id=%s'%item.getId()">up</a>              <a tal:attributes="
         <a tal:attributes="href python:'moveDown?id=%s'%item.getId()">down</a>                  class python:'editLink'; 
         <a tal:attributes="href python:'moveBottom?id=%s'%item.getId()">bottom</a>                  href python:'deleteObject?id=%s'%item.getId()">delete</a>
         &nbsp;&nbsp;<a tal:attributes="href python:'deleteObject?id=%s'%item.getId()">delete</a>          </span>
           <a class="setTitle" tal:attributes="href item/absolute_url" tal:content="item/title"/>
       </div>
        <div class="TOC">
           <a tal:attributes="
               class python:'editLink'; 
               href python:'moveTop?id=%s'%item.getId()">top</a>
           <a tal:attributes="
               class python:'editLink'; 
               href python:'moveUp?id=%s'%item.getId()">up</a>
           <a tal:attributes="
               class python:'editLink'; 
               href python:'moveDown?id=%s'%item.getId()">down</a>
           <a tal:attributes="
               class python:'editLink'; 
               href python:'moveBottom?id=%s'%item.getId()">bottom</a>
      </div>       </div>
      <div tal:replace="structure item/shortDescription"/>  
           
     </div>      </div>
       <br><a tal:attributes="
           href python:'setFolder?mode=%s'%options.get('mode', None)">return to set overwiew</a>
 </tal:block>  </tal:block>
   
   

Removed from v.1.1  
changed lines
  Added in v.1.2


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