Jonathan Druart
75dc3fb0f3
This fixes xt/tt_valid.t # Failed test '<body> tag with id and class attributes' # at xt/tt_valid.t line 91 # Files list: # intranet-tmpl/prog/en/modules/tools/access_files.tt: 8 # Looks like you failed 1 test of 3. [16:44:56] xt/tt_valid.t Dubious, test returned 1 (wstat 256, 0x100) Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
72 lines
2.1 KiB
Text
72 lines
2.1 KiB
Text
[% USE Asset %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Access files</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
[% Asset.css("css/datatables.css") %]
|
|
</head>
|
|
<body id="tools_access_files" class="tools">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'cat-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › Access files</div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
|
|
<h1>Access files</h1>
|
|
|
|
[% IF ( error_no_dir ) %]
|
|
<div class="dialog alert"><strong>Error: </strong>Files could not be found because the "access_dir" option was not set in "koha-conf.xml". Contact your system administrator to add this option.</div>
|
|
[% ELSE %]
|
|
[% IF ( files_loop ) %]
|
|
<table id="files">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Size (bytes)</th>
|
|
<th>Date last modified</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH file IN files_loop %]
|
|
<tr>
|
|
<td><a href="/cgi-bin/koha/tools/access_files.pl?id=[% file.id |url %]">[% file.name %]</a></td>
|
|
<td align="right">[% file.size %]</td>
|
|
<td>[% file.date %]</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% ELSE %]
|
|
No file found.
|
|
[% END %]
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
[% INCLUDE 'tools-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/tools-menu.js") %]
|
|
[% INCLUDE 'datatables.inc' %]
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(document).ready(function() {
|
|
$("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
|
|
"sDom": 't',
|
|
"aoColumnDefs": [
|
|
{ "aTargets": [ -1 ], "asSorting" : [ "desc", "asc" ], "bSearchable": false }
|
|
],
|
|
"bPaginate": false
|
|
}));
|
|
});
|
|
//]]>
|
|
</script>
|
|
[% END %]
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|