mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 22:13:39 +01:00
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<!-- $Id$ -->
|
|
|
|
<xsl:template match="delete">
|
|
<xsl:call-template name="app_header"/>
|
|
<table cellpadding="2" cellspacing="2" align="center">
|
|
<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}">
|
|
<input type="submit" class="forms" name="confirm" value="{$lang_yes}" onMouseover="window.status='Deletes the entry.';return true;" onMouseout="window.status='';return true;"/>
|
|
</form>
|
|
</td>
|
|
<td align="right">
|
|
<xsl:variable name="done_action"><xsl:value-of select="done_action"/></xsl:variable>
|
|
<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>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</xsl:template>
|