
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1220 fd906abe-77d9-0310-91a1-e0d9ade77398
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
<metal:block define-macro="render">
|
|
<div tal:attributes="ondblclick python: item.openEditWindow('configure.html')">
|
|
<h3 tal:content="item/title">Title</h3>
|
|
<span tal:replace="structure item/render" />
|
|
</div>
|
|
</metal:block>
|
|
|
|
|
|
<metal:block define-macro="image">
|
|
<div tal:attributes="ondblclick python: item.openEditWindow('edit.html')">
|
|
<h3 tal:content="item/title">Title</h3>
|
|
<img src="#"
|
|
tal:attributes="src string:${view/url}/.target${view/targetId}/view" />
|
|
</div>
|
|
</metal:block>
|
|
|
|
|
|
<metal:block define-macro="download">
|
|
<div tal:attributes="ondblclick python: item.openEditWindow('edit.html')">
|
|
<h3 tal:content="item/title">Title</h3>
|
|
<a href="#"
|
|
tal:attributes="href string:${view/url}/.target${view/targetId}/view">
|
|
Download '<span tal:replace="item/title" />'
|
|
</a>
|
|
</div>
|
|
</metal:block>
|
|
|
|
|
|
<form action="." method="post"
|
|
metal:define-macro="delete_object"
|
|
tal:define="action view/deleteObjectAction|nothing"
|
|
tal:condition="action"
|
|
tal:attributes="action action"
|
|
id="form.object.delete">
|
|
<span class="actionButtons"><br />
|
|
<input type="hidden" name="ids:list" value="obj"
|
|
tal:attributes="value context/zope:name" />
|
|
<input type="submit" id="object.delete"
|
|
name="container_delete_button"
|
|
value="Delete object" class="button"
|
|
onclick="return confirm('Do you really want to delete this object?')" />
|
|
</span>
|
|
</form>
|
|
|
|
|