Annotation of MPIWGWeb/zpt/editBibliographyEntry.zpt, revision 1.1.2.2

1.1.2.2 ! casties     1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        !             2:           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
        !             3: <html metal:use-macro="here/mainEditFile/macros/page">
1.1.2.1   dwinter     4: <body>
1.1.2.2 ! casties     5: <tal:block metal:fill-slot="navsel" tal:define="global selected python:'publications'" />
        !             6: <tal:block metal:fill-slot="body">
        !             7: <tal:block
        !             8:     tal:define="found python:here.ZSQLInlineSearchU(_table='bibliography',id=here.REQUEST['id']);
        !             9:         mapping python:here.metadata.main.meta.bib.generateMappingForType(type=found.reference_type)">
        !            10: 
        !            11:   <h3>Edit a separate publication</h3>
        !            12: 
        !            13:     <form action="ZSQLChange" method="get">
        !            14:     <input type="hidden" name="-format" value="editPublications">
        !            15:     <input type="hidden" name="-identify" tal:attributes="value python:'oid='+str(found.oid)">
        !            16:     <input type="hidden" name="-table" value="bibliography">
        !            17:     <table>
        !            18:       <tal:block tal:repeat="mapElement python:mapping.keys()">
        !            19:         <tr tal:condition="python:mapping[mapElement][1]!=''">
        !            20:           <td tal:content="python:mapping[mapElement][1].encode('utf-8')"/>
        !            21:           <td><input size="80" tal:attributes="value python:getattr(found,mapElement); name mapElement" />
        !            22:         </tr>
        !            23:       </tal:block>
        !            24:     </table>
        !            25:     <input type="submit" value="change" />
        !            26:     </form>
        !            27: 
        !            28:     <h3><a href="editPublications">Back to publication list</a></h3>
        !            29: 
        !            30:   </tal:block>
        !            31:   </tal:block>
1.1.2.1   dwinter    32: </body>
                     33: </html>
1.1.2.2 ! casties    34: 

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