source: trunk/jabberit_messenger/xsl/tableOrganizationsEnabledGroupsJabberit.xsl @ 697

Revision 697, 944 bytes checked in by niltonneto, 15 years ago (diff)

Fechamento das ocorrências referentes à versão 0.7.11

  • Property svn:executable set to *
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="lang1" />
6        <xsl:param name="lang2" />
7       
8        <xsl:template match="/">
9                <table id="tableOrganizationsEnabledGroupsJabberit" cellspacing="2" style="width:100%">
10                        <tr class="th">
11                                <td align="left" class="row_on"><xsl:value-of select="$lang1" /></td>
12                                <td align="left" class="row_on" style="width:30% !important"><xsl:value-of select="$lang2" /></td>
13                        </tr>
14                        <xsl:for-each select="return/ou ">
15                                <tr id="{.}" style="width:40%" class="row_off">
16                                        <td class="row_on"><xsl:value-of select="." /></td>
17                                        <td class="row_on" style="width:30% !important"><a href="javascript:constructScript.removeOrgGroupsLocked('{.}');"><xsl:value-of select="$lang2"/></a></td>
18                                </tr>
19                        </xsl:for-each>
20                </table>
21        </xsl:template>
22
23</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.