| | |
| | <xsl:include href="chart.xsl"/> |
| | +<xsl:include href="tags.xsl"/> |
| | |
| | <!-- Minor optimization. --> |
 |
| | <body> |
| | <xsl:apply-templates/> |
| | - |
| | - <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> |
| | - <script src="hColumns/js/jquery.hcolumns.min.js"></script> |
| | </body> |
| | </html> |
 |
| | <xsl:template match="@*"> |
| | <xsl:if test="name() != 'class'"><xsl:copy-of select="."/></xsl:if> |
| | -</xsl:template> |
| | - |
| | -<xsl:template match="expenses"> |
| | - <div class="expenses"> |
| | - <xsl:apply-templates mode="piechart"/> |
| | - <xsl:apply-templates select="dataset"/> |
| | - </div> |
| | -</xsl:template> |
| | - |
| | -<xsl:template match="//dataset/*[name()='data' or name()='footer']/value"> |
| | - <div class="value"><xsl:value-of |
| | - select="format-number(., '###,###')"/></div> |
| | </xsl:template> |
| | |