From 3309cab8ad8014489550ab8a8ff3d7e021f107ab Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Wed, 12 Sep 2012 14:09:04 -0400 Subject: [PATCH] TPAC: Show ISSN in search results, if available Just as we show the ISBN in search results, the ISSN is an important identifier to display if we have one (and we often will if we don't have an ISBN). Signed-off-by: Dan Scott Signed-off-by: Lebbeous Fogle-Weekley --- Open-ILS/src/templates/opac/parts/result/table.tt2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Open-ILS/src/templates/opac/parts/result/table.tt2 b/Open-ILS/src/templates/opac/parts/result/table.tt2 index f40cc13f9b..48f8be050f 100644 --- a/Open-ILS/src/templates/opac/parts/result/table.tt2 +++ b/Open-ILS/src/templates/opac/parts/result/table.tt2 @@ -98,6 +98,14 @@ [% attrs.isbns.0 | html %] [% END %] + [%- IF attrs.issns.size > 0 %] + + + [% l('ISSN:') %] + + [% attrs.issns.0 | html %] + + [%- END %] [%- IF openurl.enabled == 'true'; FOREACH issn IN args.issns; NEXT IF issn == ''; -- 2.11.0