|
Lines 91-96
Link Here
|
| 91 |
</xsl:choose> |
91 |
</xsl:choose> |
| 92 |
</xsl:variable> |
92 |
</xsl:variable> |
| 93 |
|
93 |
|
|
|
94 |
<!--Component part records: Displaying title and author of component part records if available. These are floated to right by css. --> |
| 95 |
<xsl:if test="marc:componentPartRecords/marc:componentPart"> |
| 96 |
<span class="componentPartRecordsContainer results_summary"> |
| 97 |
<h5>Component part records:</h5> |
| 98 |
<xsl:for-each select="marc:componentPartRecords/marc:componentPart"> |
| 99 |
<span class="componentPartRecord"> |
| 100 |
<xsl:if test="marc:title"> |
| 101 |
<span class="componentPartRecordTitle"> |
| 102 |
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="marc:biblionumber" /></xsl:attribute> |
| 103 |
<xsl:value-of select="marc:title" /> |
| 104 |
</a> |
| 105 |
</span> |
| 106 |
</xsl:if> |
| 107 |
<xsl:if test="marc:author"> |
| 108 |
- |
| 109 |
<span class="componentPartRecordAuthor"> |
| 110 |
<xsl:value-of select="marc:author" /> |
| 111 |
</span> |
| 112 |
</xsl:if> |
| 113 |
</span> |
| 114 |
<br /> |
| 115 |
</xsl:for-each> |
| 116 |
</span> |
| 117 |
</xsl:if> |
| 118 |
|
| 94 |
<!-- Title Statement --> |
119 |
<!-- Title Statement --> |
| 95 |
<!-- Alternate Graphic Representation (MARC 880) --> |
120 |
<!-- Alternate Graphic Representation (MARC 880) --> |
| 96 |
<xsl:if test="$display880"> |
121 |
<xsl:if test="$display880"> |