Diff for /MPIWGWeb/zpt/Attic/addPublications.zpt between versions 1.1.2.2 and 1.1.2.9

version 1.1.2.2, 2005/10/10 19:10:13 version 1.1.2.9, 2008/08/27 21:08:40
Line 1 Line 1
   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
             "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html metal:use-macro="here/mainEditFile/macros/page">  <html metal:use-macro="here/mainEditFile/macros/page">
   <body>
   <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
   
   <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">    <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
   
     <h3>Manage Publications</h3>    <h3>Add entries from the <i>Institutsbibliographie</i></h3>
     <p><a href="editPublications">Change order</a></p>    <p>On this page you can search the Institutsbibliographie for your publications and add them to the list of publications that appears on your staff-page.</p>
   
     <p>Search entries in the institutsbibliography</p>  
     <form name="search" action="addPublications" method="get">      <form name="search" action="addPublications" method="get">
         
       <table>        <table>
     <tr>      <tr>
       <td>Author</td>        <td>Author</td>
Line 25 Line 26
     <form name="add" action="addPublications" method="get">      <form name="add" action="addPublications" method="get">
             <input type="hidden" value="add" name="mode">              <input type="hidden" value="add" name="mode">
         <tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'">          <tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'">
             
           <table>            <table>
         <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">          <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">
          <td>          <td><input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries"></td>
           <input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries">          <td tal:content="structure python:here.decode(here.formatBiblHelp(None,'','',foundb))" />
          </td>  
          <td tal:content="structure python:here.formatBiblHelp(None,'','',foundb)"/>  
         </tr>          </tr>
       </table>        </table>
       <input type="submit" value="add" name="submit">        <input type="submit" value="add" name="submit">
     </tal:block>      </tal:block>
     </form>      </form>
     <!-- <h3><a href="newBibliography">Add a separate entry</a></h3> -->
     <h3><a href="editPublications">Back to publication list</a></h3>
 </tal:block>  </tal:block>
 </html>  </html>
   

Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.9


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