Annotation of MPIWGWeb/zpt/MPIWGProject_managePublicationsForm.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">
        !             3: <html metal:use-macro="here/edit_MPIWGProject_main/macros/page">
1.1.2.1   dwinter     4: <head>
                      5: </head>
                      6: <body>
1.1.2.4 ! casties     7: <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
        !             8: <tal:block metal:fill-slot="body">
        !             9:   <table>
        !            10:     <tal:block tal:repeat="publication here/getPublications">
        !            11:       <tr>
        !            12:         <td>
        !            13:           <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication[0]+'&op=up'">up</a><br>
        !            14:           <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication[0]+'&op=down'">down</a>
        !            15:         </td>
        !            16:         <td tal:content="structure python:getattr(publication[1],'text','')" />
        !            17:         <td>
        !            18:           <a tal:attributes="href python:publication[1].getId()+'/editPublication'">Edit</a><br/> 
        !            19:           <a tal:attributes="href python:'deletePublication?id='+publication[1].getId()">Delete</a>
        !            20:         </td>
        !            21:       </tr>
        !            22:     </tal:block>
        !            23:   </table>
1.1.2.2   dwinter    24: 
1.1.2.4 ! casties    25:   <h3>Add a Publication</h3>
        !            26:   <form action="addPublication" method="post">
        !            27:     <textarea name="text" rows="3" cols="80"></textarea>
        !            28:     <p><input type="submit" value="submit"/></p>
        !            29:   </form>
        !            30:   <p>(If the publications from your current project description are not showing in this list, click <a href="copyPublicationsToList">here</a> to copy them.)</p>
1.1.2.1   dwinter    31: </tal:block>
                     32: </body>
                     33: </html>

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