Diff for /ZSQLExtend/zpt/changeZSQLExtendForm.zpt between versions 1.1 and 1.8

version 1.1, 2004/04/28 15:30:42 version 1.8, 2011/02/14 22:00:50
Line 1 Line 1
 <html>  <html>
 <body>  <body>
   <div tal:replace="structure here/manage_page_header">Header</div>
   <!-- ZOPE management tabs -->
   <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing"
       tal:replace="structure here/manage_tabs">Tabs</h2>
   <!-- end of ZOPE management tabs -->
 <h2>Change ZSQL Extend</h2>  <h2>Change ZSQL Extend</h2>
 <form method="post" action="changeZSQLExtend">  <form method="post" action="changeZSQLExtend">
   
Line 14 Line 19
     <input type="text" name="label" size="80" tal:attributes="value here/getLabel" />      <input type="text" name="label" size="80" tal:attributes="value here/getLabel" />
     </td>      </td>
   </tr>    </tr>
   
 <tr>  <tr>
     <td align="left" valign="top">      <td align="left" valign="top">
     <div class="form-label">      <div class="form-label">
Line 24 Line 30
     <textarea name="description" cols=50 rows=20  tal:content="here/getDescription"></textarea>      <textarea name="description" cols=50 rows=20  tal:content="here/getDescription"></textarea>
     </td>      </td>
   </tr>    </tr>
   <tr>
       <td align="left" valign="top">
       <div class="form-label">
       Connection Id
       </div>
       </td>
       <td align="left" valign="top">
       <div class="form-element">
       <select name="connection_id">
         <tal:block tal:repeat="id python:[i[0] for i in here.SQLConnectionIDs()]">
           <option  tal:condition="python:getattr(here,'connection_id','')==id"  tal:attributes="value id" selected tal:content="id"/>
           <option  tal:condition="not:python:getattr(here,'connection_id','')==id"  tal:attributes="value id" tal:content="id"/>
         </tal:block>
       </select>
       </div>
       </td>
     </tr>
   
   <tr>
       <td align="left" valign="top">
       <div class="form-label">
       Weight <br>(for sorting <br>within ECHO environment):
       </div>
       </td>
       <td align="left" valign="top">
       <input type="text" name="weight" size="80" tal:attributes="value here/getWeight" />
       </td>
     </tr>
   
 </table>  </table>
 <input type="submit">  <input type="submit">
 </form>  </form>

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


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