Diff for /basket/zpt/BasketMain_manage_template_standard.zpt between versions 1.3 and 1.4

version 1.3, 2006/04/03 11:05:04 version 1.4, 2006/04/03 17:46:43
Line 15  td.vario { background-color:#AC1D15 } Line 15  td.vario { background-color:#AC1D15 }
 <tal:block tal:condition="authorized">  <tal:block tal:condition="authorized">
   
     <!-- 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 -->      <!--  -->
     <tal:block tal:condition="python:here.checkPermission('edit')">      <tal:block tal:condition="python:here.checkPermission('edit')">
           
     <h3>Manage your Set</h3>      <h2 class="setTitle" tal:content="here/title"/>
     <br>      
     <p tal:define="currentBasket here/getCurrentBasket">      <h4>Edit the basic Settings:</h4>
     <span tal:condition="currentBasket">The active set at the moment is <b      
         tal:content="currentBasket/title"/>.</span>      <!-- Change active basket -->
     <span tal:condition="not:currentBasket">Currently, there is no active set.</span>      <p tal:define="global currentBasket here/getCurrentBasket">
     <a href="selectThisBasketAsCurrent">Select this set as the active set.</a>      <i tal:condition="python: 
           here.title == currentBasket.title">- This is the active set at this moment -</i>
           
       <i tal:condition="python: 
           currentBasket and here.title != currentBasket.title">- The active set at this 
           moment is <b tal:content="currentBasket/title"/> -<br></i>
       <a tal:condition="python: 
           currentBasket and here.title != currentBasket.title" 
           href="selectThisBasketAsCurrent">Select this set as the active set.</a>
   
       <span tal:condition="
           not:currentBasket">- Currently, there is no active set -<br></span>
       <a tal:condition="
           not: python: currentBasket"
           href="selectThisBasketAsCurrent">Make this set the active set.</a>
     </p>      </p>
           
     <a href="manageUserRights_html">Change editor/admin rights for this set</a><br>      <a href="manageUserRights_html">Manage the access rights for this set.</a><br>
     <a href="addBasketText">Add a new textelement</a><br>      
     <a href="addBasketExternalLink">Add a new externalLink</a>      <hr>
     <form action="changeBasket">      <form action="changeBasket">
         <input type="hidden" name="target" value="manageBasket">          <input type="hidden" name="target" value="manageBasket">
         Title:<br>          Title:<br>
         <input type="text" name="title" tal:attributes="value here/title" size="50"><br>          <input class="setTitle" type="text" name="title" 
               tal:attributes="value here/title"><br>
         Short Description:<br>          Short Description:<br>
         <textarea name="shortDescription" rows="2" cols="50" tal:content="here/shortDescription">Short description</textarea><br>          <textarea class="setDescription" name="shortDescription" rows="2" 
               tal:content="here/shortDescription">Short description</textarea><br>
         Comment:<br>          Comment:<br>
         <textarea name="comment" rows="7" cols="50" tal:content="here/comment">A longer comment / introduction</textarea><br>          <textarea class="setComment" name="comment" rows="7" 
               tal:content="here/comment">A longer comment / introduction</textarea><br><br>
               
           <input type="submit" value="save">
           
           <span tal:replace="structure python:'<!--\n'" />
         <tal:x repeat="item here/publicationStatusList">          <tal:x repeat="item here/publicationStatusList">
         <tal:x replace="python:here.checkPermission('publish')"/>          <tal:x replace="python:here.checkPermission('publish')"/>
         <tal:x condition="python:(item!='open') or (item=='open' and here.checkPermission('publish'))">          <tal:x condition="python:(item!='open') or 
         <input tal:condition="python:item==here.publicationStatus" type="radio" name="publicationStatus" tal:attributes="value item" checked>              (item=='open' and here.checkPermission('publish'))">
         <input tal:condition="not:python:item==here.publicationStatus" type="radio" name="publicationStatus" tal:attributes="value item">          <input tal:condition="python:item==here.publicationStatus" type="radio"
               name="publicationStatus" tal:attributes="value item" checked>
           <input tal:condition="not:python:item==here.publicationStatus" type="radio" 
               name="publicationStatus" tal:attributes="value item">
         <span tal:content="item"/>          <span tal:content="item"/>
         </tal:x>          </tal:x>
         </tal:x>          </tal:x>
           <span tal:replace="structure python:'-->\n'" />
                   
         <input type="submit" value="save">  
     </form>      </form>
       <hr>
       <h4>Add new Elements to this Set</h4>
       <a href="addBasketText">Add a new textelement</a><br>
       <a href="addBasketExternalLink">Add a new hyperlink</a><br>
       <p><i>To add any objects from inside the Virtual Laboratory, please locate their 
       datasheet and click the 'addToSet' button.</i>  <span tal:condition="not:currentBasket"><br>Warning: there is no active set at this moment!<br></span><span tal:condition="python: currentBasket and here.title != currentBasket.title"><br>Warning: This set is not the active set at this moment, objects will go to the set <b tal:content="currentBasket/title"/>!<br></span></p>
   
       <hr>
           
     </tal:block>      </tal:block>
           
     <h4>Contents:</h4>      <h4>Edit Contents:</h4>
     <form action="changeBasketComments">      <form action="changeBasketComments">
     <div class="item" tal:repeat="item here/getBasketObjects">      <div class="item" tal:repeat="item here/getBasketObjects">
     <hr>      <hr>
      <div>       <div>
         <a tal:attributes="href python:'moveTop?id=%s'%item.getId()">top</a>          <a style="float:right" tal:attributes="class python:'editLink'; href python:'deleteObject?id=%s'%item.getId()">delete</a>
         <a tal:attributes="href python:'moveUp?id=%s'%item.getId()">up</a>  <a tal:attributes="class python:'editLink'; href python:'moveTop?id=%s'%item.getId()">top</a>
         <a tal:attributes="href python:'moveDown?id=%s'%item.getId()">down</a>          <a tal:attributes="class python:'editLink'; href python:'moveUp?id=%s'%item.getId()">up</a>
         <a tal:attributes="href python:'moveBottom?id=%s'%item.getId()">bottom</a>          <a tal:attributes="class python:'editLink'; href python:'moveDown?id=%s'%item.getId()">down</a>
         &nbsp;&nbsp;<a tal:attributes="href python:'deleteObject?id=%s'%item.getId()">delete</a>          <a tal:attributes="class python:'editLink'; href python:'moveBottom?id=%s'%item.getId()">bottom</a>
           
      </div>       </div>
      <div tal:replace="structure item/content_html"/>       <div tal:replace="structure item/content_html"/>
      <div tal:condition="python:getattr(item,'link',None) is not None">       <div tal:condition="python:getattr(item,'link',None) is not None">
         Link (url):<input type="text" size="100" tal:attributes="name python:item.getId()+'_link';          Link (url):<input type="text" size="40" tal:attributes="name python:item.getId()+'_link';
                                                    value python:getattr(item,'link',None)"><br>                                                     value python:getattr(item,'link',None)"><br>
         Linktext:<input type="text" size="100" tal:attributes="name python:item.getId()+'_linkText';          Linktext:<input type="text" size="40" tal:attributes="name python:item.getId()+'_linkText';
                                                    value python:getattr(item,'linkText',None)"><br>                                                     value python:getattr(item,'linkText',None)"><br>
                                                                                                         
      </div>       </div>

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


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