bulk_action_complete.smarty
1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<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}"/>{$context->getDisplayName()|sanitize}</h2>
<p class="descriptiveText">{i18n}These are the results of the bulk action{/i18n}:</p>
{if count($list.folders)}
<table class="kt_collection">
<thead>
<tr>
<th colspan="2">{i18n}Folders{/i18n}</th>
</tr>
<tr>
<th width="20%">{i18n}Name{/i18n}</th>
<th>{i18n}Status{/i18n}</th>
</tr>
</thead>
<tbody>
{foreach from=$list.folders item=item}
<tr class="{cycle values=even,odd}">
<td>{$item.0|sanitize}</td>
<td>{$item.1|sanitize}</td>
</tr>
{/foreach}
</tbody>
</table>
<br/>
{/if}
{if count($list.documents)}
<table class="kt_collection">
<thead>
<tr>
<th colspan="2">{i18n}Documents{/i18n}</th>
</tr>
<tr>
<th width="20%">{i18n}Name{/i18n}</th>
<th>{i18n}Status{/i18n}</th>
</tr>
</thead>
<tbody>
{foreach from=$list.documents item=item}
<tr class="{cycle values=even,odd}">
<td>{$item.0|sanitize}</td>
<td>{$item.1|sanitize}</td>
</tr>
{/foreach}
</tbody>
</table>
{/if}
{$form->render()}