Annotation of ECHO_content/zpt/exportImportObjects.zpt, revision 1.1

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <h2><span tal:replace="structure here/getTitle"/>
        !             4: <h3>Import objects</h3>
        !             5: Select a file to import:
        !             6: <form action="importObjects" method="post"
        !             7:       enctype="multipart/form-data">
        !             8: <input type="file" name="zfile" size="80">
        !             9: <br>
        !            10: <input type="submit" value="upload">
        !            11: </form>
        !            12: <hr>
        !            13: <h3>Export objects</h3>
        !            14: <p>Select the objects you want to export:</p>
        !            15: <form action="exportObjects">
        !            16: <table>
        !            17: 
        !            18: <tr tal:repeat="obj python:here.getSubCols()">
        !            19: <td><input type="checkbox" tal:attributes="value python:obj.getId()" name="ids"></td>
        !            20: <td tal:content="structure obj/getTitle"/>
        !            21: </tr>
        !            22: </table>
        !            23: <input type="submit" value="export">
        !            24: </form>
        !            25: </body>
        !            26: </html>

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