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

Last change on this file since 4957 was 4950, checked in by Eric, 14 years ago

[NBC_UserAdvManager] Pre-2.13.4 for testing only:

  • Bug 1445 pre-fixed : review of tabs design, help/plugin.lang.php updated and trying to solve the boxes closing on submit (no success)
  • Property svn:eol-style set to LF
File size: 2.7 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<script type="text/javascript">
5jQuery().ready(function(){ldelim}
6  jQuery('.cluetip').cluetip({ldelim}
7    width: 500,
8    splitTitle: '|'
9  });
10});
11</script>
12
13<div class="titrePage">
14  <h2>{'Title_Tab'|@translate} {$UAM_VERSION}<br>{'SubTitle3'|@translate}</h2>
15</div>
16
17<form method="post" action="{$UserAdvManager_F_ACTION}" class="general">
18  <fieldset>
19        <legend class="cluetip" title="{'UAM_usermanTitle'|translate}|{'UAM_usermanTitle_d'|translate}">{'UserManager_Title'|@translate}</legend>
20
21    <div class="navigationBar">{$NAVBAR}</div>
22      <table class="table2" width="97%" summary="">
23                  <thead>
24                        <tr class="throw">
25                        <td>&nbsp;</td>
26                        <td>{'Username'|@translate}</td>
27                        <td>{'user_status'|@translate}</td>
28                        <td>{'Email address'|@translate}</td>
29                        <td>{'Groups'|@translate}</td>
30                        <td>{'Registration_Date'|@translate}</td>
31            <td>{'Reminder'|@translate}</td>
32                        </tr>
33                        </thead>
34
35        {foreach from=$users item=user name=users_loop}
36          <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}">
37            <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td>
38            <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
39            <td>{$user.STATUS}</td>
40            <td>{$user.EMAIL}</td>
41            <td>{$user.GROUPS}</td>
42            <td {if $user.EXPIRATION == True}style="color:red;text-align:center;"{else}style="color:lime;text-align:center;"{/if}>{$user.REGISTRATION}</td>
43            <td style="text-align:center;">{$user.REMINDER}</td>
44            {foreach from=$user.plugin_columns item=data}
45              <td>{$data}</td>
46            {/foreach}                         
47          </tr>
48        {/foreach}
49      </table>
50
51      <div class="navigationBar">{$NAVBAR}</div>
52        <br>
53
54<p>
55  {'target'|@translate}
56  <label><input type="radio" name="target" value="all" > {'all'|@translate}</label>
57  <label><input type="radio" name="target" value="selection" checked="checked" > {'selection'|@translate}</label>
58</p>
59
60<p>
61  <input class="submit" type="submit" value="{'Delete_selected'|@translate}" name="Del_Selected">
62  <input class="submit" type="submit" value="{'Mail_without_key'|@translate}" name="Mail_Without_Key">
63  <input class="submit" type="submit" value="{'Mail_with_key'|@translate}" name="Mail_With_Key">
64  <input class="submit" type="submit" value="{'Force_Validation'|@translate}" name="Force_Validation">
65</p>
66  </fieldset>
67</form>
Note: See TracBrowser for help on using the repository browser.