egroupware/phpgwapi/templates/default/app_delete.xsl

24 lines
1.0 KiB
XML
Raw Normal View History

2002-09-26 03:49:15 +02:00
<!-- $Id$ -->
<xsl:template match="delete">
<xsl:call-template name="app_header"/>
2002-09-27 03:09:37 +02:00
<table cellpadding="2" cellspacing="2" align="center">
2002-09-26 03:49:15 +02:00
<tr>
<td align="center" colspan="2"><xsl:value-of select="lang_confirm_msg"/></td>
</tr>
<tr>
<td>
<xsl:variable name="delete_action"><xsl:value-of select="delete_action"/></xsl:variable>
<xsl:variable name="lang_yes"><xsl:value-of select="lang_yes"/></xsl:variable>
<form method="POST" action="{$delete_action}">
2002-09-28 17:35:26 +02:00
<input type="submit" class="forms" name="confirm" value="{$lang_yes}" onMouseover="window.status='Deletes the entry.';return true;" onMouseout="window.status='';return true;"/>
2002-09-26 03:49:15 +02:00
</form>
</td>
<td align="right">
<xsl:variable name="done_action"><xsl:value-of select="done_action"/></xsl:variable>
2002-09-28 17:35:26 +02:00
<a href="{$done_action}" onMouseover="window.status='Back to the list.';return true;" onMouseout="window.status='';return true;"><xsl:value-of select="lang_no"/></a>
2002-09-26 03:49:15 +02:00
</td>
</tr>
</table>
</xsl:template>