From f11e17642684e8c201e4888bf65039c125f5f797 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 --- 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 bc52adb1ed..87bb4ccb1c 100644 --- a/Open-ILS/src/templates/opac/parts/result/table.tt2 +++ b/Open-ILS/src/templates/opac/parts/result/table.tt2 @@ -95,6 +95,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