Bug 16774: Format date on 'Transfers to receive' page to dateformat system preference
To test: - Apply patch - Go to Home > Circulation > Transfers to receive - Verify that in title (Transfer made to your library as of...) is is formatted as defined in syspref dateformat Additionaly, the patch changes page title and breadcrumb from: Home > Circulation > Transfers to your library to: Home > Circulation > Transfers to receive ...to make them consistent with the link text on the Circulation home page (Transfers to receive) Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com> Works as advertised Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
b6ccd8366d
commit
11dc97cfae
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE Branches %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Koha › Circulation › Transfers to your library</title>
|
||||
<title>Koha › Circulation › Transfers to receive</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
|
||||
[% INCLUDE 'datatables.inc' %]
|
||||
|
@ -27,7 +27,7 @@ $(document).ready(function() {
|
|||
[% INCLUDE 'header.inc' %]
|
||||
[% INCLUDE 'circ-search.inc' %]
|
||||
|
||||
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Transfers to your library</div>
|
||||
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Transfers to receive</div>
|
||||
|
||||
<div id="doc" class="yui-t7">
|
||||
|
||||
|
@ -35,7 +35,7 @@ $(document).ready(function() {
|
|||
<div id="yui-main">
|
||||
<div class="yui-g">
|
||||
|
||||
<h1>Transfers made to your library as of [% show_date %]</h1>
|
||||
<h1>Transfers made to your library as of [% show_date | $KohaDates %]</h1>
|
||||
[% IF ( branchesloop ) %]
|
||||
<p>Your library is the destination for the following transfer(s)</p>
|
||||
[% IF ( latetransfers ) %]<p>Transfers are <span class="error">considered late</span> after [% TransfersMaxDaysWarning %] days.</p>[% END %]
|
||||
|
|
Loading…
Reference in a new issue