source: extensions/NBC_UserAdvManager/trunk/admin/usermanager.tpl @ 5084

Last change on this file since 5084 was 5056, checked in by Eric, 14 years ago

[NBC_UserAdvManager] Pre-2.13.5

  • Bug 1465 fixed : Plugin data are now serialized
  • Code simplification : Variables improved
  • Files renamed : functions.inc.php and UAM_admin.php
  • Update of obsolete.list (There is a bug on obsolete fils deletion)
  • Property svn:eol-style set to LF
File size: 2.8 KB
Line 
1{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
2{known_script id="jquery.cluetip" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.cluetip.packed.js"}
3
4{html_head}<link rel="stylesheet" type="text/css" href="{$NBC_UAM_PATH}admin/uam.css">{/html_head}
5
6<script type="text/javascript">
7jQuery().ready(function(){ldelim}
8  jQuery('.cluetip').cluetip({ldelim}
9    width: 500,
10    splitTitle: '|'
11  });
12});
13</script>
14
15<div class="titrePage">
16  <h2>{'Title_Tab'|@translate} {$UAM_VERSION}<br>{'SubTitle3'|@translate}</h2>
17</div>
18
19<form method="post" action="{$UAM_F_ACTION}" class="general">
20  <fieldset>
21        <legend class="cluetip" title="{'UAM_usermanTitle'|translate}|{'UAM_usermanTitle_d'|translate}">{'UserManager_Title'|@translate}</legend>
22
23    <div class="navigationBar">{$NAVBAR}</div>
24      <table class="table2" width="97%" summary="">
25                  <thead>
26                        <tr class="throw">
27                        <td>&nbsp;</td>
28                        <td>{'Username'|@translate}</td>
29                        <td>{'user_status'|@translate}</td>
30                        <td>{'Email address'|@translate}</td>
31                        <td>{'Groups'|@translate}</td>
32                        <td>{'Registration_Date'|@translate}</td>
33            <td>{'Reminder'|@translate}</td>
34                        </tr>
35                        </thead>
36
37        {foreach from=$users item=user name=users_loop}
38          <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}">
39            <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td>
40            <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
41            <td>{$user.STATUS}</td>
42            <td>{$user.EMAIL}</td>
43            <td>{$user.GROUPS}</td>
44            <td {if $user.EXPIRATION == True}style="color:red;text-align:center;"{else}style="color:lime;text-align:center;"{/if}>{$user.REGISTRATION}</td>
45            <td style="text-align:center;">{$user.REMINDER}</td>
46            {foreach from=$user.plugin_columns item=data}
47              <td>{$data}</td>
48            {/foreach}                         
49          </tr>
50        {/foreach}
51      </table>
52
53      <div class="navigationBar">{$NAVBAR}</div>
54        <br>
55
56<p>
57  {'target'|@translate}
58  <label><input type="radio" name="target" value="all" > {'all'|@translate}</label>
59  <label><input type="radio" name="target" value="selection" checked="checked" > {'selection'|@translate}</label>
60</p>
61
62<p>
63  <input class="submit" type="submit" value="{'Delete_selected'|@translate}" name="Del_Selected">
64  <input class="submit" type="submit" value="{'Mail_without_key'|@translate}" name="Mail_Without_Key">
65  <input class="submit" type="submit" value="{'Mail_with_key'|@translate}" name="Mail_With_Key">
66  <input class="submit" type="submit" value="{'Force_Validation'|@translate}" name="Force_Validation">
67</p>
68  </fieldset>
69</form>
Note: See TracBrowser for help on using the repository browser.