<Action>
<div style="margin-top:3px;">
	<div style="color:gray">{$info.details.date} (<em>{$info.details.date|MySQLTimeDiff}</em>)</div>
	<div>User "<strong>{$info.userInfo.name}</strong>" updated the metadata of the file "<strong>{$info.relativePath}</strong>".</div>
	{if $info.details.details.details.metadata}
		<table border="1" cellspacing="0" cellpadding="2"  style="font-family:tahoma,arial,verdana,sans-serif;font-size:13px;">
		<tr>
			<td>&nbsp;</td>
			<td><strong>Field<strong></td>
			<td><strong>Old value</strong></td>
			<td><strong>New value</strong></td>
		</tr>
		{foreach from=$info.details.details.details.metadata item=record}
			<tr>
				<td>{$record.fieldInfo.id}</td>
				<td>{$record.fieldInfo.name}</td>
				<td>{$record.oldValue|safeHTML}</td>
				<td>{$record.newValue|safeHTML}</td>
			</tr>
		{/foreach}
		</table>
	{/if}
</div>
</Action>