egroupware/phpgwapi/templates/default/app_header.xsl

18 lines
477 B
XML
Raw Normal View History

2002-09-26 03:49:15 +02:00
<!-- $Id$ -->
<xsl:template name="app_header">
<table border="0" cellpadding="2" cellspacing="4" width="98%" align="center">
<tr>
2002-09-27 02:15:09 +02:00
<td class="appheader"><xsl:value-of select="appname"/></td>
2002-09-26 03:49:15 +02:00
</tr>
<xsl:apply-templates select="function_msg"/>
</table>
<hr noshade="noshade" width="98%" align="center" size="1"/>
</xsl:template>
<xsl:template match="function_msg">
<tr>
2002-09-27 02:15:09 +02:00
<td class="functionmsg"><xsl:value-of select="."/></td>
2002-09-26 03:49:15 +02:00
</tr>
</xsl:template>