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

1.1.2.1   dwinter     1: <html>
                      2: <head>
1.1.2.2 ! dwinter     3: <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
1.1.2.1   dwinter     4: <style type="text/css">
                      5: <!--
                      6: .add-nav {
                      7: font-weight:bold;
                      8: padding-left:8px;
                      9: }
                     10: -->
                     11: </head>
                     12: <body>
                     13: 
                     14: <h2>Edit: <i tal:content="python:here.getContent('WEB_title')"/></h2>
                     15: <p><a class="add-nav" href="edit">Project Description</a> <a class="add-nav">Publications</a><a class="add-nav" href="manageImages" >Images at the margin</a><a class="add-nav" href="editMPIWGDisciplinesThemesEditor">Themes and disciplines</a><a class="add-nav" href="editMPIWGBasisEditor"
                     16: >Additional information</a></p>
                     17: <hr>
                     18: <h3>Manage publications</h3>
1.1.2.2 ! dwinter    19: <p>(if your current publications are not occuring in this list, click <a href="copyPublicationsToList">here</a> to copy them.)</p>
        !            20: 
1.1.2.1   dwinter    21: <table>
                     22: <tal:block tal:repeat="publication here/getPublications">
                     23: <tr>
                     24: <td tal:content="structure python:getattr(publication[1],'text','')"/>
                     25: <td>
                     26: <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication[0]+'&op=up'">up</a><br>
                     27: <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication[0]+'&op=down'">down</a><br>
                     28: </td>
                     29: </tr>
                     30: <tr colspan="2">
                     31: <td><a tal:attributes="href python:publication[1].getId()+'/editPublication'">Edit</a>
                     32: <a tal:attributes="href python:'deletePublication?id='+publication[1].getId()">Delete</a>
                     33: </td>
                     34: </tal:block>
                     35: </table>
                     36: <h4>Add a Publication</h4>
                     37: <form action="addPublication" method="post">
                     38: <textarea name="text" rows="3" cols="80"></textarea>
                     39: <input type="submit" value="submit">
                     40: </form>
                     41: </body>
                     42: </html>

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