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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl (+13 lines)
Lines 754-759 Link Here
754
        </span>
754
        </span>
755
    </xsl:if>
755
    </xsl:if>
756
756
757
    <!-- Dissertation note -->
758
    <xsl:if test="marc:datafield[@tag=502]">
759
        <span class="results_summary diss_note">
760
            <span class="label">Dissertation note: </span>
761
            <xsl:for-each select="marc:datafield[@tag=502]">
762
                <xsl:call-template name="subfieldSelect">
763
                    <xsl:with-param name="codes">abcdgo</xsl:with-param>
764
                </xsl:call-template>
765
            </xsl:for-each>
766
            <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise></xsl:choose>
767
        </span>
768
    </xsl:if>
769
757
    <xsl:if test="marc:datafield[@tag=300]">
770
    <xsl:if test="marc:datafield[@tag=300]">
758
    <span class="results_summary description"><span class="label">Description: </span>
771
    <span class="results_summary description"><span class="label">Description: </span>
759
        <xsl:for-each select="marc:datafield[@tag=300]">
772
        <xsl:for-each select="marc:datafield[@tag=300]">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl (-1 / +13 lines)
Lines 913-918 Link Here
913
        </span>
913
        </span>
914
    </xsl:if>
914
    </xsl:if>
915
915
916
    <!-- Dissertation note -->
917
    <xsl:if test="marc:datafield[@tag=502]">
918
        <span class="results_summary diss_note">
919
            <span class="label">Dissertation note: </span>
920
            <xsl:for-each select="marc:datafield[@tag=502]">
921
                <xsl:call-template name="subfieldSelect">
922
                    <xsl:with-param name="codes">abcdgo</xsl:with-param>
923
                </xsl:call-template>
924
            </xsl:for-each>
925
            <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise></xsl:choose>
926
        </span>
927
    </xsl:if>
928
916
    <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
929
    <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
917
    <xsl:if test="$display880">
930
    <xsl:if test="$display880">
918
       <xsl:call-template name="m880Select">
931
       <xsl:call-template name="m880Select">
919
- 

Return to bug 12501