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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt (-12 / +12 lines)
Lines 49-75 Link Here
49
    </div>
49
    </div>
50
50
51
    <div class="yui-u"><h2>Top lists</h2>
51
    <div class="yui-u"><h2>Top lists</h2>
52
	<ul>
52
        <ul>
53
        <li><a href="/cgi-bin/koha/reports/bor_issues_top.pl">Patrons with the most checkouts</a></li>
53
        <li><a href="/cgi-bin/koha/reports/bor_issues_top.pl">Patrons with the most checkouts</a></li>
54
        <li><a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most-circulated items</a></li>
54
        <li><a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most-circulated items</a></li>
55
	</ul>
55
        </ul>
56
56
57
	<h2>Inactive</h2>
57
        <h2>Inactive</h2>
58
	<ul>
58
        <ul>
59
		<li><a href="/cgi-bin/koha/reports/borrowers_out.pl">Patrons who haven't checked out</a></li>
59
                <li><a href="/cgi-bin/koha/reports/borrowers_out.pl">Patrons who haven't checked out</a></li>
60
		<li><a href="/cgi-bin/koha/reports/catalogue_out.pl">Items with no checkouts</a></li>
60
                <li><a href="/cgi-bin/koha/reports/catalogue_out.pl">Items with no checkouts</a></li>
61
	</ul>
61
        </ul>
62
62
63
	<h2>Other</h2>
63
        <h2>Other</h2>
64
	<ul>
64
        <ul>
65
		<li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
65
                <li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
66
        <li><a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a></li>
66
        <li><a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a></li>
67
        <li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a></li>
67
        <li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a></li>
68
		<li><a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a></li>
68
                <li><a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a></li>
69
        <li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
69
        <li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
70
        <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
70
        <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
71
        <!--<li><a href="/cgi-bin/koha/reports/stats.screen.pl">Till reconciliation</a></li> -->
71
        <!--<li><a href="/cgi-bin/koha/reports/stats.screen.pl">Till reconciliation</a></li> -->
72
	</ul></div>
72
        </ul></div>
73
</div>
73
</div>
74
74
75
75
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt (-16 / +16 lines)
Lines 1-21 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Report/log files</title>
2
<title>Report/log files</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables_[% KOHA_VERSION %].css" />
5
[% INCLUDE 'datatables.inc' %]
5
[% INCLUDE 'datatables.inc' %]
6
<script type="text/JavaScript" language="JavaScript">
6
7
    //<![CDATA[
8
        $(document).ready(function() {
9
            $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
10
                "sDom": 't',
11
                "aoColumnDefs": [
12
                    { "aTargets": [ -1 ], "asSorting" : [ "desc", "asc" ], "bSearchable": false }
13
                ],
14
                "bPaginate": false
15
            }));
16
    });
17
    //]]>
18
</script>
19
</head>
7
</head>
20
<body>
8
<body>
21
[% INCLUDE 'header.inc' %]
9
[% INCLUDE 'header.inc' %]
Lines 63-66 Link Here
63
[% INCLUDE 'tools-menu.inc' %]
51
[% INCLUDE 'tools-menu.inc' %]
64
</div>
52
</div>
65
</div>
53
</div>
66
[% INCLUDE 'intranet-bottom.inc' %]
54
<script type="text/JavaScript" language="JavaScript">
55
    //<![CDATA[
56
        $(document).ready(function() {
57
            $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
58
                "sDom": 't',
59
                "aoColumnDefs": [
60
                    { "aTargets": [ -1 ], "asSorting" : [ "desc", "asc" ], "bSearchable": false }
61
                ],
62
                "bPaginate": false
63
            }));
64
    });
65
    //]]>
66
</script>
67
[% INCLUDE 'intranet-bottom.inc' %]
67
- 

Return to bug 11317