Annotation of MPIWGWeb/zpt/addPublications.zpt, revision 1.1.2.9

1.1.2.4   casties     1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      2:           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1.1.2.1   dwinter     3: <html metal:use-macro="here/mainEditFile/macros/page">
1.1.2.4   casties     4: <body>
1.1.2.5   casties     5: <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
1.1.2.1   dwinter     6: 
1.1.2.4   casties     7: <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
1.1.2.1   dwinter     8: 
1.1.2.9 ! dwinter     9:   <h3>Add entries from the <i>Institutsbibliographie</i></h3>
        !            10:   <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>
        !            11:   <form name="search" action="addPublications" method="get">
        !            12:   <table>
        !            13:     <tr>
        !            14:       <td>Author</td>
        !            15:       <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='author')" />
        !            16:       <td><input name="author" len="30"></td>
        !            17:     </tr>
        !            18:     <tr>
        !            19:       <td>Title</td>
        !            20:       <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='title')" />
        !            21:       <td><input name="title" len="30"></td>
        !            22:     </tr>
        !            23:   </table>
        !            24:   <input type="submit" value="search">
        !            25:   </form>
        !            26:   <form name="add" action="addPublications" method="get">
        !            27:   <input type="hidden" value="add" name="mode">
        !            28:   <tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'">
        !            29:     <table>
        !            30:       <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">
        !            31:         <td><input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries"></td>
        !            32:         <td tal:content="structure python:here.decode(here.formatBiblHelp(None,'','',foundb))" />
        !            33:       </tr>
        !            34:     </table>
        !            35:     <input type="submit" value="add" name="submit">
        !            36:   </tal:block>
        !            37:   </form>
1.1.2.8   dwinter    38:   <!-- <h3><a href="newBibliography">Add a separate entry</a></h3> -->
1.1.2.4   casties    39:   <h3><a href="editPublications">Back to publication list</a></h3>
1.1.2.1   dwinter    40: </tal:block>
                     41: </html>
1.1.2.8   dwinter    42: 

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