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

Last change on this file since 4340 was 4159, checked in by Eric, 14 years ago

[NBC_UserAdvManager] release 2.12.2 :
Bug 1221 fixed - Adding of a new funtion to populate the lastvisit table on Ghost Tracker activation

Bug 1224 fixed - Error in database after plugin activation

Bug 1225 fixed - "Reminder" status don't change from "false" to "true" after the sent of a reminder email

Some code beautify (SQL requests and HTML 4 strict for tpl)

  • 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>&nbsp;</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.