loops/browser/info.pt
helmutm ae534d7bfc provide editing of relation properties (order, relevance) in management interface
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3955 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-08-15 09:25:42 +00:00

52 lines
1.5 KiB
XML

<!-- object information -->
<metal:info define-macro="object_info"
tal:define="item nocall:view/item">
<table class="object_info" width="400">
<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 tal:define="size item/context/sizeForDisplay|nothing"
tal:condition="size">
<td><span i18n:translate="">Size</span>:</td>
<td tal:content="size"></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 tal:repeat="info item/additionalInfos">
<td><span i18n:translate=""
tal:content="info/label">Creators</span>:</td>
<td tal:content="info/value"></td>
</tr>
<tr>
<td colspan="2"><br />
<input type="button" value="Close" onclick="closeDialog()"
i18n:attributes="value" />
</td>
</tr>
</table>
</metal:info>