Lucas Gass
3b273de577
This patch set attempts to replace all the <i> tags with <em> and all the <b> tags with <strong> in the staff interface. I attempted to get all the templates, includes, and xslt files. To test: 1. Review the changes as best as possible, looking for mistakes. 2. grep for <i> and <b> in the modules, includes, and xslt folders. You should get nothing/ 3. If you grep '<\/i>' you should only see instances of Font Awesome. 4. If you grep '<\/b>' you should only see instances where caret is used. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
53 lines
1.5 KiB
Text
53 lines
1.5 KiB
Text
[% USE Koha %]
|
|
[% USE raw %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Serials › Routing slip preview</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<style media="print">
|
|
#ser_routing-preview-slip { min-width:0; width:auto; }
|
|
</style>
|
|
</head>
|
|
|
|
<body id="ser_routing-preview-slip" class="ser">
|
|
<div class="container-fluid">
|
|
|
|
<table>
|
|
<tr>
|
|
<td colspan="2"><h3>[% libraryname | html %]</h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><strong>Title:</strong> [% title | html %]<br />[% issue | html %]</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td><strong>Date due</strong></td>
|
|
</tr>
|
|
[% FOREACH memberloo IN memberloop %]
|
|
<tr>
|
|
<td>[% memberloo.name | html %]</td>
|
|
<td> </td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
|
|
<div id="routingnotes">
|
|
<p id="generalroutingnote">[% Koha.Preference('RoutingListNote') | $raw %]</p>
|
|
<p id="routingnote">[% routingnotes | html %]</p>
|
|
</div>
|
|
|
|
<div id="closewindow" class="noprint"><a class="btn btn-default btn-default" id="print_slip" href="#"><i class="fa fa-print"></i> Print</a> <a class="btn btn-default btn-default close" href="#">Close</a></div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("#print_slip").on("click",function(e){
|
|
e.preventDefault();
|
|
window.print();
|
|
self.close();
|
|
});
|
|
});
|
|
</script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]
|