egroupware/admin/templates/default/users.xsl

289 lines
10 KiB
XML
Raw Normal View History

2003-04-23 23:52:22 +02:00
<!-- $Id$ -->
<xsl:template name="users">
<xsl:choose>
<xsl:when test="account_list">
<xsl:apply-templates select="account_list"/>
</xsl:when>
2003-04-27 02:17:58 +02:00
<xsl:when test="account_edit">
<xsl:apply-templates select="account_edit"/>
2003-04-23 23:52:22 +02:00
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- BEGIN user_list -->
<xsl:template match="account_list">
<center>
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="6" width="100%">
<xsl:call-template name="nextmatchs"/>
</td>
</tr>
<tr>
<td colspan="6" width="100%" align="right">
<xsl:choose>
<xsl:when test="search_access = 'yes'">
<xsl:call-template name="search_field"/>
</xsl:when>
</xsl:choose>
</td>
</tr>
<xsl:apply-templates select="user_header"/>
<xsl:apply-templates select="user_data"/>
<xsl:apply-templates select="user_add"/>
</table>
</center>
</xsl:template>
<!-- BEGIN user_header -->
<xsl:template match="user_header">
<xsl:variable name="sort_lid" select="sort_lid"/>
<xsl:variable name="sort_firstname" select="sort_firstname"/>
<xsl:variable name="sort_lastname" select="sort_lastname"/>
<xsl:variable name="lang_sort_statustext" select="lang_sort_statustext"/>
<tr class="th">
<td width="20%"><a href="{$sort_lid}" onMouseover="window.status='{$lang_sort_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_lid"/></a></td>
<td width="20%"><a href="{$sort_firstname}" onMouseover="window.status='{$lang_sort_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_firstname"/></a></td>
<td width="20%"><a href="{$sort_lastname}" onMouseover="window.status='{$lang_sort_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_lastname"/></a></td>
<td width="8%" align="center"><xsl:value-of select="lang_view"/></td>
<td width="8%" align="center"><xsl:value-of select="lang_edit"/></td>
<td width="8%" align="center"><xsl:value-of select="lang_delete"/></td>
</tr>
</xsl:template>
<!-- BEGIN user_data -->
<xsl:template match="user_data">
<xsl:variable name="lang_view_statustext"><xsl:value-of select="lang_view_statustext"/></xsl:variable>
<xsl:variable name="lang_edit_statustext"><xsl:value-of select="lang_edit_statustext"/></xsl:variable>
<xsl:variable name="lang_delete_statustext"><xsl:value-of select="lang_delete_statustext"/></xsl:variable>
<tr>
<xsl:attribute name="class">
<xsl:choose>
<xsl:when test="@class">
<xsl:value-of select="@class"/>
</xsl:when>
<xsl:when test="position() mod 2 = 0">
<xsl:text>row_off</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>row_on</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<td><xsl:value-of select="lid"/></td>
<td><xsl:value-of select="firstname"/></td>
<td><xsl:value-of select="lastname"/></td>
<td align="center">
<xsl:variable name="view_url" select="view_url"/>
<a href="{$view_url}" onMouseover="window.status='{$lang_view_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_view"/></a>
</td>
<td align="center">
<xsl:variable name="edit_url" select="edit_url"/>
<a href="{$edit_url}" onMouseover="window.status='{$lang_edit_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_edit"/></a>
</td>
<td align="center">
<xsl:variable name="delete_url" select="delete_url"/>
<a href="{$delete_url}" onMouseover="window.status='{$lang_delete_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_delete"/></a>
</td>
</tr>
</xsl:template>
<!-- BEGIN user_add -->
<xsl:template match="user_add">
2003-04-27 21:28:13 +02:00
<tr height="50">
<xsl:variable name="action_url"><xsl:value-of select="action_url"/></xsl:variable>
<form method="post" action="{$action_url}">
<td valign="bottom" colspan="3">
<xsl:choose>
<xsl:when test="add_access = 'yes'">
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
2003-04-23 23:52:22 +02:00
<xsl:attribute name="onMouseover">
<xsl:text>window.status='</xsl:text>
2003-04-27 21:28:13 +02:00
<xsl:value-of select="lang_add_statustext"/>
2003-04-23 23:52:22 +02:00
<xsl:text>'; return true;</xsl:text>
</xsl:attribute>
</input>
2003-04-27 21:28:13 +02:00
</xsl:when>
</xsl:choose>
</td>
<td align="right" valign="bottom" colspan="3">
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
<xsl:attribute name="onMouseover">
<xsl:text>window.status='</xsl:text>
<xsl:value-of select="lang_done_statustext"/>
<xsl:text>'; return true;</xsl:text>
</xsl:attribute>
</input>
</td>
</form>
</tr>
2003-04-23 23:52:22 +02:00
</xsl:template>
<!-- END user_list -->
2003-04-27 02:17:58 +02:00
<!-- BEGIN account_edit -->
2003-04-23 23:52:22 +02:00
2003-04-27 02:17:58 +02:00
<xsl:template match="account_edit">
<table border="0" cellpadding="2" cellspacing="2" align="center" width="95%">
2003-04-28 01:16:15 +02:00
<xsl:choose>
<xsl:when test="msgbox_data != ''">
<tr>
<td align="center" colspan="2"><xsl:call-template name="msgbox"/></td>
</tr>
</xsl:when>
</xsl:choose>
2003-04-23 23:52:22 +02:00
<tr>
<td valign="top">
<!-- {rows} -->
</td>
<td valign="top">
2003-04-27 22:28:34 +02:00
<xsl:variable name="edit_url"><xsl:value-of select="edit_url"/></xsl:variable>
<form method="POST" action="{$edit_url}">
2003-04-23 23:52:22 +02:00
<table border="0" width="100%">
<xsl:variable name="account_id" select="account_id"/>
2003-04-27 02:17:58 +02:00
<xsl:variable name="account_lid" select="account_lid"/>
<xsl:variable name="account_firstname" select="account_firstname"/>
<xsl:variable name="account_lastname" select="account_lastname"/>
<xsl:variable name="account_passwd" select="account_passwd"/>
<xsl:variable name="account_passwd_2" select="account_passwd_2"/>
<tr class="row_on">
<td width="25%"><xsl:value-of select="lang_lid"/></td>
<td width="25%"><input type="text" name="values[account_lid]" value="{$account_lid}"/></td>
<td width="25%"><xsl:value-of select="lang_account_active"/></td>
<td width="25%">
<xsl:choose>
<xsl:when test="account_status = 'yes'">
<input type="checkbox" name="values[account_status]" value="A" checked="checked"/>
</xsl:when>
<xsl:otherwise>
<input type="checkbox" name="values[account_status]" value="A"/>
</xsl:otherwise>
</xsl:choose>
2003-04-23 23:52:22 +02:00
</td>
</tr>
2003-04-27 02:17:58 +02:00
<tr class="row_off">
<td><xsl:value-of select="lang_firstname"/></td>
<td><input type="text" name="values[account_firstname]" value="{$account_firstname}"/></td>
<td><xsl:value-of select="lang_lastname"/></td>
<td><input type="text" name="values[account_lastname]" value="{$account_lastname}"/></td>
</tr>
<!-- BEGIN form_passwordinfo -->
<tr class="row_on">
<td><xsl:value-of select="lang_password"/></td>
<td><input type="password" name="values[account_passwd]" value="{$account_passwd}"/></td>
<td><xsl:value-of select="lang_reenter_password"/></td>
<td><input type="password" name="values[account_passwd_2]" value="{$account_passwd_2}"/></td>
</tr>
<!-- END form_passwordinfo -->
<tr class="row_off">
<td><xsl:value-of select="lang_groups"/></td>
<td colspan="3">
<select name="account_groups[]" multiple="multiple">
<xsl:apply-templates select="group_list"/>
2003-04-23 23:52:22 +02:00
</select>
</td>
</tr>
2003-04-27 02:17:58 +02:00
<tr class="row_on">
<td><xsl:value-of select="lang_expires"/></td>
<td><xsl:value-of disable-output-escaping="yes" select="select_expires"/></td>
<td><xsl:value-of select="lang_never"/></td>
2003-04-23 23:52:22 +02:00
<td>
2003-04-27 02:17:58 +02:00
<xsl:choose>
2003-04-28 01:16:15 +02:00
<xsl:when test="expires_never = 'yes'">
<input type="checkbox" name="values[expires_never]" value="True" checked="checked"/>
2003-04-27 02:17:58 +02:00
</xsl:when>
<xsl:otherwise>
2003-04-28 01:16:15 +02:00
<input type="checkbox" name="values[expires_never]" value="True"/>
2003-04-27 02:17:58 +02:00
</xsl:otherwise>
</xsl:choose>
2003-04-23 23:52:22 +02:00
</td>
</tr>
<tr>
2003-04-27 02:17:58 +02:00
<td colspan="4" height="5"></td>
</tr>
<tr>
<td colspan="4">
2003-04-23 23:52:22 +02:00
<table width="100%" border="0" cellpadding="2" cellspacing="2">
<tr class="th">
2003-04-27 02:17:58 +02:00
<td><xsl:value-of select="lang_applications"/></td>
<td></td>
2003-04-23 23:52:22 +02:00
</tr>
<xsl:apply-templates select="app_list"/>
</table>
</td>
</tr>
2003-04-27 22:28:34 +02:00
<tr height="50" valign="bottom">
<td colspan="3">
2003-04-23 23:52:22 +02:00
<xsl:variable name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
<input type="submit" name="values[save]" value="{$lang_save}"/>
</td>
2003-04-27 22:28:34 +02:00
<td colspan="3" align="right">
<xsl:variable name="lang_cancel"><xsl:value-of select="lang_cancel"/></xsl:variable>
<input type="submit" name="values[cancel]" value="{$lang_cancel}"/>
2003-04-23 23:52:22 +02:00
</td>
</tr>
</table>
2003-04-27 22:28:34 +02:00
</form>
2003-04-23 23:52:22 +02:00
</td>
</tr>
</table>
</xsl:template>
2003-04-27 02:17:58 +02:00
<!-- BEGIN group_list -->
<xsl:template match="group_list">
2003-04-23 23:52:22 +02:00
<xsl:variable name="account_id" select="account_id"/>
<xsl:choose>
<xsl:when test="selected != ''">
2003-04-28 01:16:15 +02:00
<option value="{$account_id}" selected="selected"><xsl:value-of select="account_lid"/></option>
2003-04-23 23:52:22 +02:00
</xsl:when>
<xsl:otherwise>
2003-04-28 01:16:15 +02:00
<option value="{$account_id}"><xsl:value-of select="account_lid"/></option>
2003-04-23 23:52:22 +02:00
</xsl:otherwise>
</xsl:choose>
</xsl:template>
2003-04-27 02:17:58 +02:00
<!-- BEGIN app_list -->
2003-04-23 23:52:22 +02:00
<xsl:template match="app_list">
<xsl:variable name="checkbox_name" select="checkbox_name"/>
<tr>
<xsl:attribute name="class">
<xsl:choose>
<xsl:when test="@class">
<xsl:value-of select="@class"/>
</xsl:when>
<xsl:when test="position() mod 2 = 0">
<xsl:text>row_off</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>row_on</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
2003-04-27 02:17:58 +02:00
<td width="40%"><xsl:value-of select="app_title"/></td>
2003-04-23 23:52:22 +02:00
<td width="5%" align="center">
<xsl:choose>
<xsl:when test="checked != ''">
<input type="checkbox" name="{$checkbox_name}" value="True" checked="checked"/>
</xsl:when>
<xsl:otherwise>
<input type="checkbox" name="{$checkbox_name}" value="True"/>
</xsl:otherwise>
</xsl:choose>
</td>
</tr>
</xsl:template>