add piwik installation
This commit is contained in:
parent
90aa4ef157
commit
8c5d4f0c31
3197 changed files with 563902 additions and 0 deletions
62
www/analytics/plugins/ScheduledReports/templates/index.twig
Normal file
62
www/analytics/plugins/ScheduledReports/templates/index.twig
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{% extends 'dashboard.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% include "@CoreHome/_siteSelectHeader.twig" %}
|
||||
|
||||
<div class="top_controls">
|
||||
{% include "@CoreHome/_periodSelect.twig" %}
|
||||
</div>
|
||||
|
||||
<div class="centerLargeDiv">
|
||||
<h2 piwik-enriched-headline
|
||||
help-url="http://piwik.org/docs/email-reports/">{{ 'ScheduledReports_ManageEmailReports'|translate }}</h2>
|
||||
<span id="reportSentSuccess"></span>
|
||||
<span id="reportUpdatedSuccess"></span>
|
||||
|
||||
<div class="entityContainer">
|
||||
{% import 'ajaxMacros.twig' as ajax %}
|
||||
{{ ajax.errorDiv() }}
|
||||
{{ ajax.loadingDiv() }}
|
||||
{% include "@ScheduledReports/_listReports.twig" %}
|
||||
{% include "@ScheduledReports/_addReport.twig" %}
|
||||
<a id='bottom'></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ui-confirm" id="confirm">
|
||||
<h2>{{ 'ScheduledReports_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 = {};
|
||||
ReportPlugin.defaultPeriod = '{{ defaultPeriod }}';
|
||||
ReportPlugin.defaultHour = '{{ defaultHour }}';
|
||||
ReportPlugin.defaultReportType = '{{ defaultReportType }}';
|
||||
ReportPlugin.defaultReportFormat = '{{ defaultReportFormat }}';
|
||||
ReportPlugin.reportList = {{ reportsJSON | raw }};
|
||||
ReportPlugin.createReportString = "{{ 'ScheduledReports_CreateReport'|translate }}";
|
||||
ReportPlugin.updateReportString = "{{ 'ScheduledReports_UpdateReport'|translate }}";
|
||||
$(function () {
|
||||
initManagePdf();
|
||||
});
|
||||
</script>
|
||||
<style type="text/css">
|
||||
.reportCategory {
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.entityAddContainer {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.entityAddContainer > .entityCancel:first-child {
|
||||
position: absolute;
|
||||
right:0;
|
||||
bottom:100%;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue