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

index.tpl « templates « PDFReports « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e47b41e665e5d664266a88339ad79db6bdad2726 (plain)
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
{assign var=showSitesSelection value=true}

{include file="CoreHome/templates/header.tpl"}

<div class="top_controls_inner">
    {include file="CoreHome/templates/period_select.tpl"}
</div>

<div class="centerLargeDiv">
    <h2>{'PDFReports_ManageEmailReports'|translate}</h2>

    <div class="entityContainer">
        {ajaxErrorDiv}
        {ajaxLoadingDiv}
        {include file="PDFReports/templates/list.tpl"}
        {include file="PDFReports/templates/add.tpl"}
        <a id='bottom'></a>
    </div>
</div>

<div class="ui-confirm" id="confirm">
    <h2>{'PDFReports_AreYouSureDeleteReport'|translate}</h2>
    <input role="yes" type="button" value="{'General_Yes'|translate}"/>
    <input role="no" type="button" value="{'General_No'|translate}"/>
</div>

<script type="text/javascript">
    var ReportPlugin = new Object();
    ReportPlugin.defaultPeriod = '{$defaultPeriod}';
    ReportPlugin.defaultHour = '{$defaultHour}';
    ReportPlugin.defaultReportType = '{$defaultReportType}';
    ReportPlugin.defaultReportFormat = '{$defaultReportFormat}';
    ReportPlugin.reportList = {$reportsJSON};
    ReportPlugin.createReportString = "{'PDFReports_CreateReport'|translate}";
    ReportPlugin.updateReportString = "{'PDFReports_UpdateReport'|translate}";
    {literal}
    $(document).ready(function () {
        initManagePdf();
    });
</script>
    <style type="text/css">
        .reportCategory {
            font-weight: bold;
            margin-bottom: 5px;
        }
    </style>
{/literal}