View | Details | Raw Unified | Return to bug 11317
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc (-1 / +1 lines)
Lines 109-114 Link Here
109
       <li><a href="/cgi-bin/koha/tools/upload.pl">Upload any file</a></li>
109
       <li><a href="/cgi-bin/koha/tools/upload.pl">Upload any file</a></li>
110
    [% END %]
110
    [% END %]
111
    [% IF ( CAN_user_tools_access_files ) %]
111
    [% IF ( CAN_user_tools_access_files ) %]
112
    <li><a href="/cgi-bin/koha/tools/access_files.pl">Report/log files</a></li>
112
    <li><a href="/cgi-bin/koha/tools/access_files.pl">Access files</a></li>
113
    [% END %]
113
    [% END %]
114
</ul></div></div>
114
</ul></div></div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt (-4 / +4 lines)
Lines 1-7 Link Here
1
[% USE Asset %]
1
[% USE Asset %]
2
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Report/log files</title>
4
<title>Access files</title>
5
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% Asset.css("css/datatables.css") %]
6
[% Asset.css("css/datatables.css") %]
7
</head>
7
</head>
Lines 9-25 Link Here
9
[% INCLUDE 'header.inc' %]
9
[% INCLUDE 'header.inc' %]
10
[% INCLUDE 'cat-search.inc' %]
10
[% INCLUDE 'cat-search.inc' %]
11
11
12
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; Report/log files</div>
12
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; Access files</div>
13
13
14
<div id="doc3" class="yui-t2">
14
<div id="doc3" class="yui-t2">
15
   <div id="bd">
15
   <div id="bd">
16
    <div id="yui-main">
16
    <div id="yui-main">
17
    <div class="yui-b">
17
    <div class="yui-b">
18
18
19
    <h1>Report/log files</h1>
19
    <h1>Access files</h1>
20
20
21
[% IF ( error_no_dir ) %]
21
[% IF ( error_no_dir ) %]
22
    <div class="dialog alert"><strong>Error: </strong>Report/log 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>
22
    <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>
23
[% ELSE %]
23
[% ELSE %]
24
    [% IF ( files_loop ) %]
24
    [% IF ( files_loop ) %]
25
        <table id="files">
25
        <table id="files">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-3 / +2 lines)
Lines 115-122 Link Here
115
    [% END %]
115
    [% END %]
116
116
117
    [% IF CAN_user_tools_access_files %]
117
    [% IF CAN_user_tools_access_files %]
118
    <dt><a href="/cgi-bin/koha/tools/access_files.pl">Report/log files</a></dt>
118
    <dt><a href="/cgi-bin/koha/tools/access_files.pl">Access files</a></dt>
119
    <dd>Access report or log files</dd>
119
    <dd>Access files stored on the server, like log files or reports</dd>
120
    [% END %]
120
    [% END %]
121
121
122
</dl>
122
</dl>
123
- 

Return to bug 11317