<Action>
<div style="margin-top:3px;">
	<div style="color:gray">{$info.details.date} (<em>{$info.details.date|MySQLTimeDiff}</em>)</div>
	<div style="margin-left:5px;">User "<strong>{$info.sentByUserInfo.name}</strong>" has shared the folder "{$info.details.details.relative_path|nicerRelativePath}" with:
		<ul style="margin-left:15px;margin-top:0px;">
		{foreach from=$info.details.details.with_gid key=gid item=perms}
			{assign var="groupInfo" value=$gid|groupInfo}
			<li>group "<strong>{$groupInfo.name}</strong>"</li>
		{/foreach}
		{foreach from=$info.details.details.with_uid key=uid item=perms}
			{assign var="userInfo" value=$uid|userInfo}
			<li>user "<strong>{$userInfo.name}</strong>"</li>
		{/foreach}
		</ul>
	</div>
</div>
</Action>