
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4108 fd906abe-77d9-0310-91a1-e0d9ade77398
35 lines
1,019 B
XML
35 lines
1,019 B
XML
<html>
|
|
|
|
|
|
<metal:content define-macro="media_manager">
|
|
<h1>
|
|
<span tal:content="context/title" />:
|
|
<span i18n:translate="">Media Manager</span></h1>
|
|
<div>
|
|
<a tal:attributes="href context/absolute_url"
|
|
i18n:translate="">Back to Wiki</a><br /> </div>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="form_action" value="upload" />
|
|
<div>
|
|
<input type="file" name="file" /></div>
|
|
<div>
|
|
<input type="submit" name="upload" value="Upload File" /></div>
|
|
</form>
|
|
<tal:listing define="objects view/listObjects"
|
|
condition="objects">
|
|
<h2 i18n:translate="">Media Objects</h2>
|
|
<div tal:repeat="obj objects">
|
|
<a tal:attributes="href string:${obj/absolute_url}/@@view"
|
|
tal:content="obj/title" />
|
|
</div>
|
|
</tal:listing>
|
|
</metal:content>
|
|
|
|
|
|
<metal:content define-macro="media_object">
|
|
<h1>
|
|
<span tal:content="context/title" /></h1>
|
|
</metal:content>
|
|
|
|
|
|
</html>
|