You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.6 KiB
93 lines
2.6 KiB
<?xml version="1.0" encoding="Windows-1251"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
|
|
<xsl:import href="elems\Main.xslt"/>
|
|
<xsl:template name="specificTitle">Ïîëüçîâàòåëè</xsl:template>
|
|
<xsl:template name="specific">
|
|
<table width="95%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
|
|
<tr>
|
|
<td>
|
|
<table cellpadding="3" cellspacing="1" width="100%" class="tableborders">
|
|
<tr class="tdheader">
|
|
<td align="left" width="15%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ïîëüçîâàòåëü</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="12%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ãðóïïà</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="5%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Èòîãî ñîîáùåíèé</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="5%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ðåéòèíã</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="18%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Äàòà ðåãèñòðàöèè</xsl:text>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<xsl:apply-templates select="users/user"/>
|
|
<xsl:if test="users/pageOuter">
|
|
<tr class="tdheader">
|
|
<td colspan="7">
|
|
<table width="100%" cellspacing="1" cellpadding="3" border="0">
|
|
<tr>
|
|
<td>
|
|
<xsl:apply-templates select="users/pageOuter" mode="withCurrent"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</xsl:if>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="users/user">
|
|
<tr>
|
|
<xsl:choose>
|
|
<xsl:when test="position() mod 2 = 0">
|
|
<xsl:attribute name="class">lighttable</xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="class">darktable</xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<td>
|
|
<xsl:apply-templates select="current()" mode="userLink"/>
|
|
</td>
|
|
<td>
|
|
<xsl:value-of select="group/name"/>
|
|
</td>
|
|
<td>
|
|
<a>
|
|
<xsl:attribute name="href">/Users/User/<xsl:value-of select="id"/>/Posts/</xsl:attribute>
|
|
<xsl:value-of select="totalPosts"/>
|
|
<xsl:if test="actualPosts">
|
|
<xsl:text> (</xsl:text>
|
|
<xsl:value-of select="actualPosts"/>
|
|
<xsl:text>)</xsl:text>
|
|
</xsl:if>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<xsl:text>TODO</xsl:text>
|
|
</td>
|
|
<td>
|
|
<xsl:apply-templates select="regDate" mode="dateTime"/>
|
|
</td>
|
|
</tr>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet> |