egroupware/phpgwapi/templates/default/app_header.xsl

18 lines
466 B
XML
Raw Normal View History

2002-09-26 03:49:15 +02:00
<!-- $Id$ -->
<xsl:template name="app_header">
2002-09-27 03:09:37 +02:00
<table cellpadding="2" cellspacing="2" width="98%" align="center">
2002-09-26 03:49:15 +02:00
<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>