@@ -, +, @@ records" page - Stage a record in MARC format - Go to Staged MARC management - Check the date in the list of imports - Click on the import and check the "Staged:" date - Apply patch - Repeat and verify formatting is now correct --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -1,5 +1,6 @@ [% USE raw %] [% USE Asset %] +[% USE KohaDates %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Manage staged MARC records @@ -107,7 +108,7 @@ <li><span class="label">File name:</span> [% file_name | html %]</li> <li><span class="label">Comments:</span> [% IF ( comments ) %][% comments | html %][% ELSE %](none)[% END %]</li> <li><span class="label">Type:</span> [% IF ( record_type == 'auth' ) %]Authority records[% ELSE %]Bibliographic records[% END %]</li> - <li><span class="label">Staged:</span> [% upload_timestamp | html %]</li> + <li><span class="label">Staged:</span> [% upload_timestamp | $KohaDates with_hours=1 %]</li> <li><span class="label">Status:</span> [% IF ( import_status == 'cleaned' ) %] Cleaned @@ -357,7 +358,7 @@ [% batch_lis.import_status | html %] [% END %] </td> - <td>[% batch_lis.upload_timestamp | html %]</td> + <td>[% batch_lis.upload_timestamp | $KohaDates with_hours=1 %]</td> <td>[% batch_lis.num_records | html %]</td> <td>[% batch_lis.num_items | html %] [% IF ( batch_lis.num_items && batch_lis.import_status == 'imported' ) %] --