Skip to content

Commit

Permalink
limiting duplicated MDSelfLinks file list
Browse files Browse the repository at this point in the history
  • Loading branch information
wowasa committed Jan 31, 2024
1 parent 34d0eec commit 38d59e0
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions curation-app/src/main/resources/xslt/CollectionReport2HTML.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,19 @@
<td colspan="2">
<ul>
<xsl:for-each select="./origins/origin">
<li>
<a>
<xsl:attribute name="href">/record/<xsl:value-of
select="." /></xsl:attribute>
<xsl:value-of select="." />
</a>
</li>
<xsl:if test="not(position() > 100)">
<li>
<a>
<xsl:attribute name="href">/record/<xsl:value-of
select="." /></xsl:attribute>
<xsl:value-of select="." />
</a>
</li>
</xsl:if>
</xsl:for-each>
<xsl:if test="count(./origins/origin) > 100">
<li>[...] complete list in downloadable report</li>
</xsl:if>
</ul>
</td>
</tr>
Expand Down

0 comments on commit 38d59e0

Please sign in to comment.