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

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>
        !             5: <tal:block metal:fill-slot="navsel" tal:define="global selected python:'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.4 ! casties     9:   <h3>Add entries from the institutsbibliographie</h3>
        !            10:   <form name="search" action="addPublications" method="get">
        !            11:   <table>
        !            12:     <tr>
        !            13:       <td>Author</td>
        !            14:       <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='author')" />
        !            15:       <td><input name="author" len="30"></td>
        !            16:     </tr>
        !            17:     <tr>
        !            18:       <td>Title</td>
        !            19:       <td tal:content="structure python:here.ZSQLsearchOptions(fieldname='title')" />
        !            20:       <td><input name="title" len="30"></td>
        !            21:     </tr>
        !            22:   </table>
        !            23:   <input type="submit" value="search">
        !            24:   </form>
        !            25:   <form name="add" action="addPublications" method="get">
        !            26:   <input type="hidden" value="add" name="mode">
        !            27:   <tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'">
        !            28:     <table>
        !            29:       <tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')">
        !            30:         <td><input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries"></td>
        !            31:         <td tal:content="structure python:here.formatBiblHelp(None,'','',foundb)" />
        !            32:       </tr>
        !            33:     </table>
        !            34:     <input type="submit" value="add" name="submit">
        !            35:   </tal:block>
        !            36:   </form>
        !            37:   <h3><a href="newBibliography">Add a separate entry</a></h3>
        !            38:   <h3><a href="editPublications">Back to publication list</a></h3>
1.1.2.1   dwinter    39: </tal:block>
                     40: </html>

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