Martin Renvoize
ef9d877a12
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
125 lines
6.4 KiB
HTML
125 lines
6.4 KiB
HTML
[% USE Asset %]
|
|
[% USE KohaDates %]
|
|
[% USE Koha %]
|
|
[% USE AuthorisedValues %]
|
|
[% USE Branches %]
|
|
[% USE raw %]
|
|
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Mana Knowledge Base reports search › Reports › Koha</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
[% Asset.css("css/reports.css") | $raw %]
|
|
</head>
|
|
|
|
<body id="rep_mana_search" class="rep">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'circ-search.inc' %]
|
|
|
|
<div id="breadcrumbs">
|
|
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
|
|
› <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>
|
|
› <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a>
|
|
› Mana Knowledge Base report search results
|
|
</div>
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-push-2">
|
|
<main>
|
|
<h2>Mana Knowledge Base report search results</h2>
|
|
|
|
<div id="mana_results">
|
|
[% IF statuscode == "200" AND reports %]
|
|
|
|
<table id="mana_results_datatable">
|
|
<thead>
|
|
<tr>
|
|
<th>Report name</th>
|
|
<th class="anti-the">Notes</th>
|
|
<th>Type</th>
|
|
<th title="Number of libraries using this pattern"># of users</th>
|
|
<th title="Last time a library used this pattern">Last import</th>
|
|
<th> Comments </th>
|
|
[% UNLESS search_only %]
|
|
<th class="NoSort noExport">Actions</th>
|
|
[% END %]
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH report IN reports %]
|
|
[% UNLESS report.cannotdisplay %]
|
|
[% IF report.nbofcomment > highWarned %]
|
|
<tr id="row[% report.id | html %]" class="high-warned-row">
|
|
[% ELSIF report.nbofcomment > warned %]
|
|
<tr id="row[% report.id | html %]" class="warned-row">
|
|
[% ELSIF report.nbofcomment > lowWarned %]
|
|
<tr id="row[% report.id | html %]" class="highlighted-row">
|
|
[% ELSE %]
|
|
<tr id="row[% report.id | html %]">
|
|
[% END %]
|
|
<td>
|
|
<input type="hidden" class="rowid" value="[% report.id | $raw %]" />
|
|
[% IF ( report.report_name ) %]
|
|
[% report.report_name | html %]
|
|
[% END %]
|
|
</td>
|
|
<td title="[% report.savedsql | html %]">
|
|
[% IF report.notes.length > 200 %]
|
|
<div>
|
|
[% report.notes.substr(0,200) | html %]... <a href="#" class="btn btn-link btn-sm showbutton"><i class="fa fa-plus-square-o"></i> Show more</a>
|
|
</div>
|
|
<div style="display:none">
|
|
[% report.notes | html %]
|
|
<a href="#" class="btn btn-link btn-sm hidebutton"><i class="fa fa-minus-square-o"></i> Show less</a>
|
|
</div>
|
|
[% ELSE %]
|
|
[% report.notes | html %]
|
|
[% END %]
|
|
</td>
|
|
<td> [% report.type | html %] </td>
|
|
<td>
|
|
[% IF ( report.nbofusers ) %]
|
|
[% report.nbofusers | html %]
|
|
[% END %]
|
|
</td>
|
|
<td data-order="[% report.lastimport | html %]">
|
|
[% report.lastimport | $KohaDates %]
|
|
</td>
|
|
<td>
|
|
[% FOREACH comment IN report.comments %]
|
|
[% comment.message | html %] ([% comment.nb | html %])<br>
|
|
[% END %]
|
|
</td>
|
|
|
|
[% UNLESS search_only %]
|
|
<td>
|
|
<button type="button" class="btn btn-default btn-xs mana-use" id="mana-use-[% report.id | html %]" data-report_id="[% report.id | html %]"><i class="fa fa-download"></i> Import</button>
|
|
</td>
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% ELSE %]
|
|
<h4>
|
|
[% IF ( msg ) %]
|
|
[% msg | html %] (Statuscode: [% statuscode | html %])
|
|
[% ELSE %]
|
|
No results found
|
|
[% END %]
|
|
</h4>
|
|
[% END %]
|
|
</div>
|
|
|
|
</main>
|
|
</div> <!-- /.col-sm-10.col-sm-push-2 -->
|
|
|
|
<div class="col-sm-2 col-sm-pull-10">
|
|
<aside>
|
|
[% INCLUDE 'guided-reports-view.inc' %]
|
|
</aside>
|
|
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
|
</div> <!-- /.row -->
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|