Bug 7074: (QA follow-up) Deal with multiple fields
Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
992a68e004
commit
f2b8444267
1 changed files with 4 additions and 1 deletions
|
@ -788,7 +788,10 @@
|
|||
</td>
|
||||
<td class="ci-title">
|
||||
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber | uri %]">
|
||||
[% riloo.itemtitle | html %] [% FOREACH subt IN riloo.subtitle %] [% subt | html %] [% riloo.part_number | html %] [% riloo.part_name | html %][% END %]
|
||||
[% riloo.itemtitle | html %]
|
||||
[% FOREACH subtitle IN riloo.subtitle.split(' \\| ') %] <span class="subtitle">[% subtitle | html %]</span>[% END %]
|
||||
[% FOREACH part_number IN riloo.part_number.split(' \\| ') %] <span class="part_number">[% part_number | html %]</span>[% END %]
|
||||
[% FOREACH part_name IN riloo.part_name.split(' \\| ') %] <span class="part_name">[% part_name | html %]<span>[% END %]
|
||||
</a>
|
||||
[% IF ( riloo.enumchron ) %]
|
||||
<br/>
|
||||
|
|
Loading…
Reference in a new issue