From 9f1b0d07d593d097a9f614104fd245597e02cb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Sun, 19 Jun 2016 17:43:19 +0200 Subject: [PATCH] [SIGNED-OFF]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 Works as advertised --- .../intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt index 6c2f533..227c2f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt @@ -1,7 +1,7 @@ [% USE KohaDates %] [% USE Branches %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Circulation › Transfers to your library +Koha › Circulation › Transfers to receive [% INCLUDE 'doc-head-close.inc' %] [% INCLUDE 'datatables.inc' %] @@ -27,7 +27,7 @@ $(document).ready(function() { [% INCLUDE 'header.inc' %] [% INCLUDE 'circ-search.inc' %] - +
@@ -35,7 +35,7 @@ $(document).ready(function() {
-

Transfers made to your library as of [% show_date %]

+

Transfers made to your library as of [% show_date | $KohaDates %]

[% IF ( branchesloop ) %]

Your library is the destination for the following transfer(s)

[% IF ( latetransfers ) %]

Transfers are considered late after [% TransfersMaxDaysWarning %] days.

[% END %] -- 1.7.10.4