git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
28 lines
1.3 KiB
Plaintext
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>
|