View | Details | Raw Unified | Return to bug 4300
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (+12 lines)
Lines 588-593 Link Here
588
        </xsl:if>
588
        </xsl:if>
589
        </xsl:for-each>
589
        </xsl:for-each>
590
        </xsl:if>
590
        </xsl:if>
591
        
592
        <!-- 866 textual holdings -->
593
        <xsl:if test="marc:datafield[@tag=866]">
594
            <span class="results_summary holdings_note"><span class="label">Holdings Note: </span>
595
                <xsl:for-each select="marc:datafield[@tag=866]">
596
                    <xsl:call-template name="subfieldSelect">
597
                        <xsl:with-param name="codes">axz</xsl:with-param>
598
                    </xsl:call-template>
599
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
600
                </xsl:for-each>
601
            </span>
602
        </xsl:if>
591
603
592
        <!--  775 Other Edition  -->
604
        <!--  775 Other Edition  -->
593
        <xsl:if test="marc:datafield[@tag=775]">
605
        <xsl:if test="marc:datafield[@tag=775]">
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-8 / +9 lines)
Lines 717-730 Link Here
717
        </span>
717
        </span>
718
        </xsl:for-each>
718
        </xsl:for-each>
719
719
720
	<!-- 866 holdings public note -->
720
        <!-- 866 textual holdings -->
721
        <xsl:if test="marc:datafield[@tag=866]">
721
        <xsl:if test="marc:datafield[@tag=866]">
722
        <span class="results_summary holdings_note"><span class="label">Holdings Note: </span>
722
            <span class="results_summary holdings_note"><span class="label">Holdings Note: </span>
723
        <xsl:for-each select="marc:datafield[@tag=866]">
723
                <xsl:for-each select="marc:datafield[@tag=866]">
724
                <xsl:value-of select="marc:subfield[@code='z']"/>
724
                    <xsl:call-template name="subfieldSelect">
725
                <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
725
                        <xsl:with-param name="codes">az</xsl:with-param>
726
        </xsl:for-each>
726
                    </xsl:call-template>
727
        </span>
727
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
728
                </xsl:for-each>
729
            </span>
728
        </xsl:if>
730
        </xsl:if>
729
731
730
        <!--  775 Other Edition  -->
732
        <!--  775 Other Edition  -->
731
- 

Return to bug 4300