<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/Goodo">
		<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tab">
			<tr class="tab_bar">
				<td width="100%" height="30" colspan="2">
					<xsl:value-of select="@SubPlateName"/>
				</td>				
			</tr>
			<tr>
				<td width="24%" height="30" align="right">
					<b>功能包列表：</b>
				</td>
				<td align="left" style="text-align:left;">
					<xsl:apply-templates select="Board"/>
				</td>
			</tr>
			<tr>
				<td width="24%" height="30" align="right">
					<b>模块列表：</b>
				</td>
				<td align="left" style="text-align:left;">
					<xsl:apply-templates select="Module"/>
				</td>
			</tr>
		</table>
	</xsl:template>
	<xsl:template match="Board">
		<span style="color:grey;">
		<xsl:value-of select="@ID"/>.
	</span><xsl:value-of select="@NAME"/>
		<xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</xsl:text>
	</xsl:template>
	<xsl:template match="Module">
		<span style="color:grey;">
			<xsl:value-of select="@ID"/>.
		</span><xsl:value-of select="@NAME"/>
		<xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</xsl:text>	
	</xsl:template>
</xsl:stylesheet>