This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/templates/kt3/view_folder_history.smarty

28 lines
1.3 KiB
Plaintext

<h2><img src="{if $config->get("ui/morphEnabled") == '1'}{$rootUrl}/skins/kts_{$config->get("ui/morphTo")}/title_bullet.png{else}{$rootUrl}/resources/graphics/title_bullet.png{/if}"/>{i18n}Folder Transaction History{/i18n}:<br />{$folder->getName()|sanitize}</h2>
<p class="descriptiveText">{i18n}This page provides details of all activities that have been carried out on the folder.{/i18n}</p>
<table class="document_history" summary="{i18n}Folder History{/i18n}" cellspacing="0">
<thead>
<tr>
<th class="username">{i18n}User{/i18n}</th>
<th class="action">{i18n}Action{/i18n}</th>
<th class="date">{i18n}Date{/i18n}</th>
<th class="comment">{i18n}Comment{/i18n}</th>
</tr>
</thead>
<tbody>
{foreach item=aTransactionRow from=$transactions}
<tr class="{cycle values=even,odd}">
<td class="username">{$aTransactionRow.user_name}</td>
<td class="action">{i18n}{$aTransactionRow.transaction_name}{/i18n}</td>
<td class="date">{$aTransactionRow.datetime}</td>
<td class="comment">{$aTransactionRow.comment|sanitize}</td>
</tr>
{/foreach}
</tbody>
</table>