loops/browser/info.pt
helmutm 89745445e2 provide simple object info page (as modal dialog)
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2571 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-05-01 18:59:42 +00:00

46 lines
1.3 KiB
XML

<!-- object information -->
<metal:info define-macro="object_info"
tal:define="item nocall:view/item">
<table class="object_info">
<tr>
<td colspan="2"><h2 i18n:translate="">Object Information</h2><br /></td>
</tr>
<tr>
<td><span i18n:translate="">Title</span>:</td>
<td tal:content="item/title"></td>
</tr>
<tr>
<td><span i18n:translate="">Description</span>:</td>
<td tal:content="item/description"></td>
</tr>
<tr>
<td><span i18n:translate="">Name</span>:</td>
<td tal:content="item/context/__name__"></td>
</tr>
<tr>
<td><span i18n:translate="">Type</span>:</td>
<td tal:content="item/longTypeTitle"></td>
</tr>
<tr>
<td><span i18n:translate="">Size</span>:</td>
<td tal:content="item/context/sizeForDisplay"></td>
</tr>
<tr>
<td><span i18n:translate="">modified</span>:</td>
<td tal:content="item/modified"></td>
</tr>
<tr>
<td><span i18n:translate="">Creators</span>:</td>
<td tal:content="item/creators"></td>
</tr>
<tr>
<td colspan="2"><br />
<input type="button" value="Close" onclick="closeDialog()"
i18n:attributes="value" />
</td>
</tr>
</table>
</metal:info>