Bug 34791: Add links to HTML Customizations to CookieConsent preferences
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / reports-home.tt
1 [% USE raw %]
2 [% USE Koha %]
3 [% PROCESS 'i18n.inc' %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>[% FILTER collapse %]
6     [% t("Reports") | html %] &rsaquo;
7     [% t("Koha") | html %]
8 [% END %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11 <body id="rep_reports-home" class="rep">
12 [% WRAPPER 'header.inc' %]
13     [% INCLUDE 'circ-search.inc' %]
14 [% END %]
15
16 [% WRAPPER 'sub-header.inc' %]
17     [% WRAPPER breadcrumbs %]
18         [% WRAPPER breadcrumb_item bc_active= 1 %]
19             <span>Reports</span>
20         [% END %]
21     [% END #/ WRAPPER breadcrumbs %]
22 [% END #/ WRAPPER sub-header.inc %]
23
24 <div class="main container-fluid">
25     <div class="row">
26         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
27             <h1>Reports</h1>
28             <div class="row">
29                 <div class="col-xs-6">
30
31                     [% IF ( CAN_user_reports_execute_reports || CAN_user_reports_create_reports ) %]
32                         <form action="/cgi-bin/koha/reports/guided_reports.pl" method="get">
33                             <fieldset class="brief">
34                                 <h2>Guided reports</h2>
35                                 <input name="phase" value="Use saved" type="hidden">
36                                 <input name="filter_set" value="1" type="hidden">
37                                 [% IF ( CAN_user_reports_create_reports ) %]
38                                     <p>
39                                         <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new"><i class="fa-solid fa-code-branch"></i> Create guided report</a>
40                                     </p>
41                                     <p>
42                                         <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create%20report%20from%20SQL"><i class="fa fa-plus"></i> Create from SQL</a>
43                                     </p>
44                                 [% END %]
45                                 <p>
46                                     <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved"><i class="fa fa-list"></i> Use saved</a>
47                                 </p>
48                                 <label for="filter_keyword">Search by keyword:</label> <input id="filter_keyword" name="filter_keyword" value="" size="16" type="text" /> <input type="submit" class="btn btn-primary" value="Search" />
49                             </fieldset>
50                         </form>
51                     [% END %]
52
53         <h5>Reports dictionary</h5>
54         <ul>
55             <li><a href="/cgi-bin/koha/reports/dictionary.pl?phase=View%20Dictionary">View dictionary</a></li>
56         </ul>
57
58         <h2>Statistics wizards</h2>
59         <ul>
60             <li><a href="/cgi-bin/koha/reports/acquisitions_stats.pl">Acquisitions</a></li>
61             <li><a href="/cgi-bin/koha/reports/borrowers_stats.pl">Patrons</a></li>
62             <li><a href="/cgi-bin/koha/reports/catalogue_stats.pl">Catalog</a></li>
63             <li><a href="/cgi-bin/koha/reports/issues_stats.pl">Circulation</a></li>
64             <li><a href="/cgi-bin/koha/reports/serials_stats.pl">Serials</a></li>
65             <li><a href="/cgi-bin/koha/reports/cash_register_stats.pl">Cash register</a></li>
66             <li><a href="/cgi-bin/koha/reports/reserves_stats.pl">Holds</a></li>
67       </ul>
68
69         [% IF plugins_enabled %]
70             <h2>Report plugins</h2>
71             <ul>
72                 <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=report">Report plugins</a></li>
73             </ul>
74         [% END %]
75
76     </div>
77
78     <div class="col-xs-6"><h2>Top lists</h2>
79         <ul>
80             <li><a href="/cgi-bin/koha/reports/bor_issues_top.pl">Patrons with the most checkouts</a></li>
81             <li><a href="/cgi-bin/koha/reports/cat_issues_top.pl">Most-circulated items</a></li>
82         </ul>
83
84         <h2>Inactive</h2>
85         <ul>
86                 <li><a href="/cgi-bin/koha/reports/borrowers_out.pl">Patrons who haven't checked out</a></li>
87                 <li><a href="/cgi-bin/koha/reports/catalogue_out.pl">Items with no checkouts</a></li>
88         </ul>
89
90         <h2>Other</h2>
91         <ul>
92             <li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
93             <li><a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a></li>
94             <li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a></li>
95             <li><a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a></li>
96             [% SET koha_version = Koha.Version %]
97             [% IF koha_version.development %]
98                 <li><a href="http://schema.koha-community.org/master" target="blank">Koha database schema</a></li>
99             [% ELSE %]
100                 <li><a href="http://schema.koha-community.org/[% koha_version.major | uri %]_[% koha_version.minor | uri %]" target="blank">Koha database schema</a></li>
101             [% END %]
102
103             <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
104         </ul>
105         [% IF ( Koha.Preference('Mana') == 2 ) %]
106         <div class="dialog message" style="margin:15px 0 0 0";>
107             <strong>Knowledgebase</strong>
108             <p> You haven't decided if you want to activate Mana Knowledge Base. <a href=/cgi-bin/koha/admin/share_content.pl>Change your Mana KB settings</a>.</p>
109         </div>
110         [% END %]
111     </div>
112 </div>
113
114
115 </div>
116     <div class="col-md-12" id="intranet-reports-home-html">
117         [% Koha.Preference('IntranetReportsHomeHTML') | $raw %]
118     </div>
119 </div>
120 [% INCLUDE 'intranet-bottom.inc' %]