Skip to content
Snippets Groups Projects
Commit a546d3cc authored by Marvin Scholz's avatar Marvin Scholz
Browse files

Corrected stats.xsl to correct invalid markup

Correcting that the unordered list for authentication was wrapped in a table,
which is invalid.
parent 5a9f0426
No related branches found
No related tags found
No related merge requests found
......@@ -39,22 +39,20 @@
</tbody>
</table>
<xsl:if test="authentication">
<table>
<ul>
<xsl:for-each select="authentication/role">
<li>
Role
<xsl:if test="@name">
<xsl:value-of select="@name" />
</xsl:if>
of type <xsl:value-of select="@type" />:
<xsl:if test="@management-url">
<a href="{@management-url}">Manage Authentication</a>
</xsl:if>
</li>
</xsl:for-each>
</ul>
</table>
<ul>
<xsl:for-each select="authentication/role">
<li>
Role
<xsl:if test="@name">
<xsl:value-of select="@name" />
</xsl:if>
of type <xsl:value-of select="@type" />:
<xsl:if test="@management-url">
<a href="{@management-url}">Manage Authentication</a>
</xsl:if>
</li>
</xsl:for-each>
</ul>
</xsl:if>
</div>
<!--end global server stats-->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment