@@ -, +, @@ $datetime('2020-02-18T12:46:05Z', {tz: 'America/Argentina/Buenos_Aires'}) and you should get "02/18/2020 09:46" because America/Argentina/Buenos_Aires is -03:00 $datetime('2020-02-18T12:46:05Z', {tz: 'Asia/Shanghai'}) and you should get "02/18/2020 20:46" because Asia/Shanghai is +08:00 $datetime('2020-02-18T12:46:05Z') and it should be translated to your koha instance configured timezone. --- koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 1 + 1 file changed, 1 insertion(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -10,6 +10,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'home-search.inc' %] +[% INCLUDE 'js-date-format.inc' %] --