Koha/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-report-search-result.inc
Jonathan Druart e08629b68b Bug 29602: Surround strings with span tag
To be nicer with translators.

Update the PO files for whichever languages will show how this is
useful.

Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Rebased-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-19 21:25:51 -10:00

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 &rsaquo; Reports &rsaquo; 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>
&rsaquo; <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>
&rsaquo; <a href="/cgi-bin/koha/reports/guided_reports.pl">Guided reports wizard</a>
&rsaquo; 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 %] <span>(Status code: [% statuscode | html %])</span>
[% ELSE %]
<span>No results found</span>
[% 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' %]