information for media assets; show this in info popup; link image to info popup in Lobo skin standard views - Lobo listings: allow for restriction of children listed to certain types
52 lines
1.5 KiB
XML
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="structure info/value"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><br />
|
|
<input type="button" value="Close" onclick="closeDialog()"
|
|
i18n:attributes="value" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</metal:info>
|