From c864217c218df754d8d9ead4e73f78d825fa00d1 Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Thu, 14 Mar 2013 17:40:04 -0400 Subject: [PATCH] LP1103068 - Show titles and authors for pre-cat items As noted in LP1103068, TPAC does not currently show anything when viewing a pre-cataloged item in the my account summary of items checked out. If the call number is -1 (pre-cat), then show the dummy title and dummy author values, which fields are hopefully relevant as long as staff were good to put something meaningful in those during creation of the pre-cat. Also, wrap the title in a check for attrs.title. Signed-off-by: Ben Shum Conflicts: Open-ILS/src/templates/opac/myopac/circs.tt2 --- Open-ILS/src/templates/opac/myopac/circs.tt2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/opac/myopac/circs.tt2 b/Open-ILS/src/templates/opac/myopac/circs.tt2 index bf3ab0e8cd..6e40aa91fe 100644 --- a/Open-ILS/src/templates/opac/myopac/circs.tt2 +++ b/Open-ILS/src/templates/opac/myopac/circs.tt2 @@ -105,10 +105,16 @@ + [% IF circ.circ.target_copy.call_number.id == -1 %] + [% circ.circ.target_copy.dummy_title | html %] + [% ELSIF attrs.title %] [% attrs.title | html %] - [% IF attrs.author %] / + [% END %] + [% IF circ.circ.target_copy.call_number.id == -1 %] / + [% circ.circ.target_copy.dummy_author | html %] + [% ELSIF attrs.author %] / [% attrs.author | html %] -- 2.11.0