Koha/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-idref.tt
Wainui Witika-Park eecc4d3e8b Bug 27742: Page titles have unique info first
Changed the titles of each page on the OPAC to display the unique
information first, and the name of the website (e.g. Koha library
        catalog). This is fot accessibility reasons, such as when a
screen reader user is going through tabs, they do not have to waste time
listening to the website name, they can just find the unique page title
first.

To test:
1) Go to the OPAC
2) Apply patch
3) Go to each of the pages and check that the page title has the unique
information about the page first, and the name of the website is at the
end

Sponsored by: Catalyst IT
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-04-01 18:51:38 +02:00

76 lines
2.3 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Your search IDREF for ppn [% unimarc3 | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
[% INCLUDE 'doc-head-close.inc' %]
[% BLOCK cssinclude %]
<style>
ul.ui-tabs-nav li a, ul.ui-tabs-nav li span.a { padding:0.6em 1em; }
#idref h2.role {
background-color: #DDDEEE;
cursor: pointer;
}
#idref table {
margin: 0;
}
</style>
[% END %]
</head>
[% INCLUDE 'bodytag.inc' bodyid='idref' bodyclass='scrollto' %]
<div class="main">
[% IF error %]
This ppn is not found on the idref service.
[% ELSE %]
[% FOREACH role IN content %]
<div>
<h2 class="role" title="Click to expand this role">[% role.role_name | html %] ([% role.count | html %])</h2>
<div class="docs">
<table>
<thead>
<tr>
<th>Citation</th>
<th>Koha</th>
<th>Sudoc</th>
</tr>
</thead>
<tbody>
[% FOREACH doc IN role.docs %]
<tr>
<td>[% doc.citation | html %]</td>
<td><a href="/cgi-bin/koha/opac-search.pl?q=ident:[% doc.ppn | uri %]" target="_blank">Koha</a></td>
<td><a href="http://www.sudoc.fr/[% doc.ppn | uri %]" target="_blank" rel="noreferrer">Sudoc</a></td>
</tr>
[% END %]
</tbody>
</table>
</div>
</div>
[% END %]
[% END %]
</div>
[% BLOCK jsinclude %]
[% INCLUDE 'datatables.inc' %]
<script>
$(document).ready(function (){
$("table").dataTable($.extend(true, {}, dataTablesDefaults, {
'filter': false,
'columnDefs': [
{ 'targets': [-1, -2], 'sortable': false }
],
}));
$(".role").click(function(){
var docs_node = $(this).parent().find("div.docs");
if ( $(docs_node).is(":visible") ) {
$(".docs").hide();
} else {
$(".docs").hide();
docs_node.show();
}
});
$(".docs").hide();
});
</script>
[% END %]
[% INCLUDE 'opac-bottom.inc' is_popup=1%]