https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17867
Bug ID: 17867
Summary: Improve display of source (MARC21 773) in result list
Change sponsored?: ---
Product: Koha
Version: master
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5 - low
Component: MARC Bibliographic data support
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
Currently only $t is shown. If there is no author in $a, the title goes in $a
and there is no $t. We should also catch this case and show at least a and t.
>From the XSLT:
928 <xsl:if test="marc:datafield[@tag=773]">
929 <xsl:for-each select="marc:datafield[@tag=773]">
930 <xsl:if test="marc:subfield[@code='t']">
931 <span class="results_summary">
932 <span class="label">Source: </span>
933 <xsl:value-of select="marc:subfield[@code='t']"/>
934 </span>
935 </xsl:if>
936 </xsl:for-each>
937 </xsl:if>
Note: if there were multiple 773, the lable would be printed mulitple times.
--
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/