File:  [Repository] / ECHO_content / zpt / exportImportObjects.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Thu Oct 19 07:27:59 2006 UTC (17 years, 7 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
minor

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<h2><span tal:replace="structure here/getTitle"/></h2>
<h3>Import objects</h3>
Select a file to import:
<form action="importObjects" method="post"
      enctype="multipart/form-data">
<input type="file" name="zfile" size="80">
<br>
<input type="submit" value="upload">
</form>
<hr>
<h3>Export objects</h3>
<p>Select the objects you want to export:</p>
<form action="exportObjects">
<table>

<tr tal:repeat="obj python:here.getSubCols()">
<td><input type="checkbox" tal:attributes="value python:obj.getId()" name="ids"></td>
<td tal:content="obj/getId"/>
<td tal:content="structure obj/getTitle"/>
</tr>
</table>
<input type="submit" value="export">
</form>
</body>
</html>

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