<!--  $Id$  -->
<!--                                                                  -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:include href="/app/tools/support/templates/layout.xsl" />

  <xsl:template name="mainBody" >
    <xsl:call-template name="listFiles" />
           <br />
           <br />
  </xsl:template>

  <xsl:template name="listFiles" >
    <xsl:for-each select="LoadHistory/LoadFile">
      <a href="/support/load?c=detail&amp;file={.}"><xsl:value-of select="." /></a>
      <br />
    </xsl:for-each>
  </xsl:template>

</xsl:stylesheet>
