Welcome to mirror list, hosted at ThFree Co, Russian Federation.

datatable_actions_subdatable.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7d71c7105d325534fce84b882f2c6e6c3358a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<tr id="{$properties.uniqueId}"></tr>
{if isset($arrayDataTable.result) and $arrayDataTable.result == 'error'}
    {$arrayDataTable.message}
{else}
    {if count($arrayDataTable) == 0}
        <tr>
            <td colspan="{$nbColumns}">{'CoreHome_CategoryNoData'|translate}</td>
        </tr>
    {else}
        {foreach from=$arrayDataTable item=row}
            <tr {if $row.idsubdatatable}class="subActionsDataTable" id="{$row.idsubdatatable}" {else}class="actionsDataTable"{/if}>
                {foreach from=$dataTableColumns item=column}
                    <td>
                        {include file="CoreHome/templates/datatable_cell.tpl"}
                    </td>
                {/foreach}
            </tr>
        {/foreach}
    {/if}
{/if}