Files
Cloud-CMS/reports/mobile-proofofplay-report-preview.twig
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

117 lines
4.1 KiB
Twig

{#
/*
* Xibo - Digital Signage - http://www.xibo.org.uk
* Copyright (C) 2022 Xibo Signage Ltd
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*
*/
#}
{% extends "authed.twig" %}
{% import "inline.twig" as inline %}
{% block actionMenu %}
<div class="widget-action-menu pull-right">
<button class="btn btn-info XiboRedirectButton" href="{{ url_for("savedreport.view") }}"><i class="fa fa-eye" aria-hidden="true"></i> {% trans "Saved Reports" %}</button>
</div>
{% endblock %}
{% block pageContent %}
<div class="widget">
<div class="widget-title">
<i class="fa fa-list"></i>
{{ metadata.title }}
<span class="small">({% trans "Generated on: " %}{{ metadata.generatedOn }})</span>
<div><span class="small">{% trans "From" %} {{ metadata.periodStart }} {% trans "To" %} {{ metadata.periodEnd }}</span></div>
<div class="clearfix"></div>
</div>
<div class="widget-body">
<div class="XiboGrid" id="{{ random() }}">
<div class="XiboData card pt-3">
<table id="stats" class="table table-striped">
<thead>
<tr>
<th>{% trans "Start" %}</th>
<th>{% trans "End" %}</th>
<th>{% trans "Display Id" %}</th>
<th>{% trans "Display" %}</th>
<th>{% trans "Layout Id" %}</th>
<th>{% trans "Layout" %}</th>
<th>{% trans "Start Latitude" %}</th>
<th>{% trans "Start Longitude" %}</th>
<th>{% trans "End Latitude" %}</th>
<th>{% trans "End Longitude" %}</th>
<th>{% trans "Duration" %}</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}
{% block javaScript %}
<script type="text/javascript" nonce="{{ cspNonce }}">
$(document).ready(function() {
let outputData = {{ table|json_encode|raw }};
// Grid
let table = $("#stats").DataTable({
"language": dataTablesLanguage,
"dom": dataTablesTemplate,
"paging": false,
"ordering": false,
"info": false,
"order": [[1, "asc"]],
"searching": false,
"data": outputData,
"columns": [
{
"data": "from",
"render": dataTableDateFromIso
},
{
"data": "to",
"render": dataTableDateFromIso
},
{"data": "displayId"},
{"data": "display"},
{"data": "layoutId"},
{"data": "layout"},
{"data": "startLat"},
{"data": "startLong"},
{"data": "endLat"},
{"data": "endLong"},
{"data": "duration"}
]
});
table.on('draw', dataTableDraw);
table.on('processing.dt', dataTableProcessing);
});
</script>
{% endblock %}