Last change
on this file since 23555 was
4062,
checked in by Eric, 15 years ago
|
[NBC_UserAdvManager] 4061 merged from trunk to branch 2.11
- Bug 1195 fixed : Registration page displays now the good title
|
-
Property svn:eol-style set to
LF
|
File size:
2.0 KB
|
Line | |
---|
1 | <div class="titrePage"> |
---|
2 | <h2>{'Title_Tab3'|@translate}</h2> |
---|
3 | </div> |
---|
4 | |
---|
5 | <form method="post" action="{$UserAdvManager_F_ACTION}" class="general"> |
---|
6 | <fieldset> |
---|
7 | <legend>{'UserManager_Title'|@translate}</legend> |
---|
8 | <ul> |
---|
9 | <li><label>{'UserAdvManager_ConfirmMail_User_List'|@translate}</label><br> |
---|
10 | <br> |
---|
11 | |
---|
12 | <table class="table2" width="97%" summary=""> |
---|
13 | <thead> |
---|
14 | <tr class="throw"> |
---|
15 | <td> </td> |
---|
16 | <td>{'Username'|@translate}</td> |
---|
17 | <td>{'user_status'|@translate}</td> |
---|
18 | <td>{'Email address'|@translate}</td> |
---|
19 | <td>{'Groups'|@translate}</td> |
---|
20 | <td>{'Registration_Date'|@translate}</td> |
---|
21 | </tr> |
---|
22 | </thead> |
---|
23 | |
---|
24 | {foreach from=$users item=user name=users_loop} |
---|
25 | <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}"> |
---|
26 | <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" /></td> |
---|
27 | <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td> |
---|
28 | <td>{$user.STATUS}</td> |
---|
29 | <td>{$user.EMAIL}</td> |
---|
30 | <td>{$user.GROUPS}</td> |
---|
31 | <td {if $user.EXPIRATION == True}style="color:red;text-align:center;"{else}style="color:lime;text-align:center;"{/if}>{$user.REGISTRATION}</td> |
---|
32 | {foreach from=$user.plugin_columns item=data} |
---|
33 | <td>{$data}</td> |
---|
34 | {/foreach} |
---|
35 | </tr> |
---|
36 | {/foreach} |
---|
37 | </table> |
---|
38 | <br/> |
---|
39 | </li> |
---|
40 | </ul> |
---|
41 | |
---|
42 | <p> |
---|
43 | {'target'|@translate} |
---|
44 | <label><input type="radio" name="target" value="all" /> {'all'|@translate}</label> |
---|
45 | <label><input type="radio" name="target" value="selection" checked="checked" /> {'selection'|@translate}</label> |
---|
46 | </p> |
---|
47 | |
---|
48 | <p> |
---|
49 | <input class="submit" type="submit" value="{'Delete_selected'|@translate}" name="Del_Selected" /> |
---|
50 | <input class="submit" type="submit" value="{'Mail_without_key'|@translate}" name="Mail_Without_Key" /> |
---|
51 | <input class="submit" type="submit" value="{'Mail_with_key'|@translate}" name="Mail_With_Key" /> |
---|
52 | <input class="submit" type="submit" value="{'Force_Validation'|@translate}" name="Force_Validation" /> |
---|
53 | </p> |
---|
54 | </fieldset> |
---|
55 | </form> |
---|
Note: See
TracBrowser
for help on using the repository browser.