summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/html-templates.xsl6
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/text-templates.xsl4
2 files changed, 5 insertions, 5 deletions
diff --git a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
index 7e9e08055..cfe494b05 100644
--- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
@@ -3,10 +3,10 @@
<xsl:template match="Node">
<xsl:if test="count(Statistics/Good)+count(Statistics/Bad)+count(Statistics/Extra)+count(Statistics/Modified)+count(Statistics/Stale) > 0">
- <div class="nodebox" name="{Client/@name}">
+ <div class="nodebox" name="{HostInfo/@fqdn}">
<span class="notebox">Time Ran: <xsl:value-of select="Statistics/@time" /></span>
- <span class="configbox">(<xsl:value-of select="Client/@profile" />)</span>
- <h2>Node: <span class="nodename"><xsl:value-of select="Client/@name" /></span></h2>
+ <span class="configbox">(<xsl:value-of select="Client/@image" />/<xsl:value-of select="Client/@profile" />)</span>
+ <h2>Node: <span class="nodename"><xsl:value-of select="HostInfo/@fqdn" /></span></h2>
<xsl:apply-templates select="Statistics" />
</div>
</xsl:if>
diff --git a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
index 8b820415b..c393692a4 100644
--- a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
@@ -5,9 +5,9 @@
<xsl:text>
- </xsl:text>Node:<xsl:value-of select="Client/@name" /><xsl:text>
+ </xsl:text>Node:<xsl:value-of select="HostInfo/@fqdn" /><xsl:text>
</xsl:text>Time Ran: <xsl:value-of select="Statistics/@time" />.<xsl:text>
- </xsl:text>(<xsl:value-of select="Client/@profile" />)
+ </xsl:text>(<xsl:value-of select="Client/@image" />/<xsl:value-of select="Client/@profile" />)
<xsl:apply-templates select="Statistics" />
</xsl:if>
</xsl:template>