Diff for /ECHO_content/zpt/ChangeECHO_Collection.zpt between versions 1.12 and 1.18

version 1.12, 2004/06/08 15:25:11 version 1.18, 2005/03/10 15:46:59
Line 1 Line 1
 <html>  <html>
   <body>    <body>
     <h2>Change collection</h2>      <h2>Change collection <span tal:replace="here/getId"/></h2>
     <form name="form" action="changeECHO_collection">      <form name="form" action="changeECHO_collection">
       <table>        <table>
       <tr><td><b> Title: </b></td><td><input type="text" name="title" tal:attributes="value here/title" size="90"></td></tr>        <tr><td><b> Title: </b></td><td><input type="text" name="title" tal:attributes="value here/title" size="90"></td></tr>
Line 25 Line 25
         <input type="radio" name="location"  value="top" checked>top<input type="radio" name="location"  value="bottom">bottom          <input type="radio" name="location"  value="top" checked>top<input type="radio" name="location"  value="bottom">bottom
           </tal:block>            </tal:block>
       </td></tr>             </td></tr>     
         <tr><td><i>Clickable also if selected:<i> 
           <input tal:condition="python:getattr(here,'isAlwaysClickable',None)" type="checkbox" name="isAlwaysClickable"  checked value="yes">
           <input tal:condition="not:python:getattr(here,'isAlwaysClickable',None)" type="checkbox" name="isAlwaysClickable"  value="yes">
         </td></tr>
 </table>  </table>
   
     <h4>Coords</h4>             <h3> Partners:</h3>
       <table>  
       <tr tal:repeat="coord python:here.getCoords()"><td><b> Coords: </b></td><td><input type="text" name="coords" tal:attributes="value coord"></td></tr>  
 </table>  
   
 <h4>View Type</h4>  
 <p tal:repeat="viewClass here/viewClassificationList">  
 <input tal:condition="python:here.getViewClassification()==viewClass" type="radio" name="viewClassification" tal:attributes="value viewClass" checked/>  
 <input tal:condition="not:python:here.getViewClassification()==viewClass" type="radio" name="viewClassification" tal:attributes="value viewClass"/>  
 <span tal:content="viewClass"/><br/>  
 </p>  
   
 <h3> Credits:</h3>  
               
       <div tal:repeat="item here/partners/getPartners">        <div tal:repeat="item here/getPartners">
           
     <div tal:condition="python:item.getId() in here.getCredits()">      <div tal:condition="python:item.getId() in here.getCredits()">
               
       <input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title" checked/>        <input type="checkbox" name="credits" tal:attributes="value item/id"  checked/><tal:block tal:content="item/title"/>
     </div>      </div>
     <div tal:condition="not:python:item.getId() in here.getCredits()">      <div tal:condition="not:python:item.getId() in here.getCredits()">
         <input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title"/>          <input type="checkbox" name="credits" tal:attributes="value item/id"/><tal:block tal:content="item/title"/>
     </div>      </div>
   
       </div>        </div>

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


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