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