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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (+25 lines)
Lines 395-400 Link Here
395
        </span>
395
        </span>
396
        </xsl:if>
396
        </xsl:if>
397
397
398
        <xsl:if test="marc:datafield[@tag=013]">
399
            <span class="results_summary patent_info">
400
                <span class="label">Patent information: </span>
401
                <xsl:for-each select="marc:datafield[@tag=013]">
402
                    <xsl:call-template name="subfieldSelect">
403
                        <xsl:with-param name="codes">acdef</xsl:with-param>
404
                        <xsl:with-param name="delimeter">, </xsl:with-param>
405
                    </xsl:call-template>
406
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
407
                </xsl:for-each>
408
            </span>
409
        </xsl:if>
410
        
411
        <xsl:if test="marc:datafield[@tag=088]">
412
            <span class="results_summary report_number">
413
                <span class="label">Report number: </span>
414
                <xsl:for-each select="marc:datafield[@tag=088]">
415
                    <xsl:call-template name="subfieldSelect">
416
                        <xsl:with-param name="codes">a</xsl:with-param>
417
                    </xsl:call-template>
418
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
419
                </xsl:for-each>
420
            </span>
421
        </xsl:if>
422
398
        <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
423
        <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
399
        <xsl:if test="$display880">
424
        <xsl:if test="$display880">
400
            <xsl:call-template name="m880Select">
425
            <xsl:call-template name="m880Select">
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +25 lines)
Lines 401-406 Link Here
401
        </span>
401
        </span>
402
        </xsl:if>
402
        </xsl:if>
403
403
404
        <xsl:if test="marc:datafield[@tag=013]">
405
            <span class="results_summary patent_info">
406
                <span class="label">Patent information: </span>
407
                <xsl:for-each select="marc:datafield[@tag=013]">
408
                    <xsl:call-template name="subfieldSelect">
409
                        <xsl:with-param name="codes">acdef</xsl:with-param>
410
                        <xsl:with-param name="delimeter">, </xsl:with-param>
411
                    </xsl:call-template>
412
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
413
                </xsl:for-each>
414
            </span>
415
        </xsl:if>
416
        
417
        <xsl:if test="marc:datafield[@tag=088]">
418
            <span class="results_summary report_number">
419
                <span class="label">Report number: </span>
420
                <xsl:for-each select="marc:datafield[@tag=088]">
421
                    <xsl:call-template name="subfieldSelect">
422
                        <xsl:with-param name="codes">a</xsl:with-param>
423
                    </xsl:call-template>
424
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
425
                </xsl:for-each>
426
            </span>
427
        </xsl:if>
428
404
        <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
429
        <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
405
        <xsl:if test="$display880">
430
        <xsl:if test="$display880">
406
            <xsl:call-template name="m880Select">
431
            <xsl:call-template name="m880Select">
407
- 

Return to bug 9363