source: branches/2.2/filemanager/tp/expressowindow/xsl/send_notification.xsl @ 3610

Revision 3610, 667 bytes checked in by alexandrecorreia, 13 years ago (diff)

Ticket #1395 - Padronizacao das janelas do filemanager com as do Expresso ( Envio de arquivo e mensagens ).

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:param name = "lang_delete" />
6        <xsl:param name = "lang_send_notification_email_to" />
7       
8        <xsl:template match="teste">
9       
10                <div style="margin: 4px;">
11                        <label>
12                                <xsl:value-of select="$lang_send_notification_email_to" />
13                        </label>
14                        <br/>
15                        <input type="text" name="notifTo[]" size="38"/>
16                        <span style="color:red; cursor:pointer; margin-left:2px;" onclick="removeInput(this);"><xsl:value-of select="$lang_delete" /></span>
17                </div>
18               
19        </xsl:template>
20       
21</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.