����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.141.42.23 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/views/admin/ |
Upload File : |
{% extends "admin/partial/layout_logged_in.html.twig" %} {% block title %}Downloads for {{ file.originalFilename|slice(0, 50) }}{% endblock %} {% block selected_page %}files{% endblock %} {% block selected_sub_page %}file_manage{% endblock %} {% block body %} <script> oTable = null; oTableRefreshTimer = null; $(document).ready(function () { // datatable oTable = $('#previousDownloadsTable').dataTable({ "sPaginationType": "full_numbers", "bServerSide": true, "bProcessing": true, "sAjaxSource": 'ajax/download_previous?fileId={{ file.id }}', "iDisplayLength": 100, "aaSorting": [[1, "desc"]], "bFilter": false, "bLengthChange": false, "aoColumns": [ {bSortable: false, sWidth: '3%', sName: 'file_icon', sClass: "center adminResponsiveHide"}, {sName: 'date_started', sWidth: '15%', sClass: "activeDownloadsColumn"}, {sName: 'ip_address', sWidth: '12%', sClass: "center adminResponsiveHide"}, {sName: 'username'} ], "fnServerData": function (sSource, aoData, fnCallback, oSettings) { setTableLoading(); $.ajax({ "dataType": 'json', "type": "GET", "url": sSource, "data": aoData, "success": fnCallback }); }, "fnDrawCallback": function (oSettings) { postDatatableRender(); }, "oLanguage": { "sEmptyTable": "There are no previous downloads." } }); }); function reloadTable() { oTable.fnDraw(); } </script> <!-- page content --> <div class="right_col" role="main"> <div class=""> <div class="page-title"> <div class="title_left"> <h3>{{ block('title') }}</h3> </div> </div> <div class="clearfix"></div> {{ msg_page_notifications|raw }} <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>File Downloads</h2> <div class="clearfix"></div> </div> <div class="x_content"> <table id="previousDownloadsTable" class="table table-striped table-only-border dtLoading bulk_action"> <thead> <tr> <th></th> <th>{{ t("download_date", "download date")|title }}</th> <th>{{ t("ip_address", "ip address")|title }}</th> <th>{{ t("username", "username")|title }}</th> </tr> </thead> <tbody> <tr> <td colspan="20">{{ t('admin_loading_data', 'Loading data...') }}</td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div> {% endblock %}