Diff for /MPIWGWeb/zpt/Attic/addPublications.zpt between versions 1.1 and 1.1.2.1

version 1.1, 2005/10/10 08:42:49 version 1.1.2.1, 2005/10/10 08:42:49
Line 0 Line 1
   <html metal:use-macro="here/mainEditFile/macros/page">
   
     <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
   
       <h3>Manage Publications</h3>
       <p><a href="editPublications">Change order</a></p>
   
       <p>Search entries in the insitutsbliobgraphie</p>
       <form action="addPublications" method="get">
         <tal:block tal:define="dummy python:here.REQUEST.RESPONSE.setCookie('fromSearch','1')"/> 
         <table>
       <tr>
         <td>Author</td>
         <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='author')"/>
         <td><input name="author" len="30"></td>
       </tr>
       <tr>
         <td>Title</td>
         <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='title')"/>
         <td><input name="title" len="30"></td>
       </tr>
         </table>
         <input type="submit" value="submit">
       </form>
       <tal:block tal:condition="python:here.REQUEST.cookies.get('fromSearch','0')=='1'">
         <tal:block tal:define="dummy python:here.REQUEST.RESPONSE.setCookie('fromSearch','0')"/> 
         <table>
       <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">
        <td>
         <input type="checkbox" tal:attributes="value python:'add_'+str(foundb.id)">
        </td>
        <td tal:content="structure python:here.formatBiblHelp(None,'','',foundb)"/>
       </tr>
         </table>
       </tal:block>
    
   </tal:block>
   </html>

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


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