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

version 1.1.2.8, 2008/08/25 10:35:02 version 1.1.2.9, 2008/08/27 21:08:40
Line 6 Line 6
   
 <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>Add Publications</h3>    <h3>Add entries from the <i>Institutsbibliographie</i></h3>
   <p> There are two ways to add publications to your list. </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>
   <ol>     <form name="search" action="addPublications" method="get">
     <li> Publications that were created and released at the MPIWG are stored in a database, the <u>Instituts-Bibliographie</u>.<br/> In     <table>
          that case you can <b>search for and add them</b> <a href="addPublicationsBib">here</a>. </li>      <tr>
     <li> If you want to add publications that <u>have not been released at the MPIWG</u>,<br/> you may need to <b>add separate entries</b> <a href="newBibliography"> here</a>.</li>        <td>Author</td>
   </ol>        <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="search">
     </form>
     <form name="add" action="addPublications" method="get">
     <input type="hidden" value="add" name="mode">
     <tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'">
       <table>
         <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">
           <td><input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries"></td>
           <td tal:content="structure python:here.decode(here.formatBiblHelp(None,'','',foundb))" />
         </tr>
       </table>
       <input type="submit" value="add" name="submit">
     </tal:block>
     </form>
   <!-- <h3><a href="newBibliography">Add a separate entry</a></h3> -->    <!-- <h3><a href="newBibliography">Add a separate entry</a></h3> -->
   <h3><a href="editPublications">Back to publication list</a></h3>    <h3><a href="editPublications">Back to publication list</a></h3>
 </tal:block>  </tal:block>

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


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