source: extensions/NBC_UserAdvManager/trunk/admin/userlist.tpl @ 4934

Last change on this file since 4934 was 4927, checked in by Eric, 14 years ago

[NBC_UserAdvManager] Pre-2.13.4 for testing only:

  • Bug 1303 and 1387 fixed : There is a bug in Piwigo 2.0.8 about switch_lang() function. This may be fixed in the next Piwigo release. These UAM fix are available only for Piwigo 2.0.8 and have to be recoded for the next Piwigo release. (Thx to Rub and cljosse for their usefull help).
  • Bug 1444 fixed
  • Bug 1445 pre-fixed : Begining of plugin's admin panel improvement. Add of new help language files (FR for the moment), deletion of ConfirmMail tab, mix all config in one tab, add of cuetips. This is for testing !
  • Property svn:eol-style set to LF
File size: 1.5 KB
Line 
1<div class="titrePage">
2  <h2>{'Title_Tab'|@translate} {$UAM_VERSION}<br>{'SubTitle5'|@translate}</h2>
3</div>
4
5<form method="post" action="{$UserAdvManager_F_ACTION}" class="general">
6  <fieldset>
7        <legend>{'UserList_Title'|@translate}</legend>
8    <ul>
9                <li><label>{'UserAdvManager_User_List'|@translate}</label><br><br>
10<div class="navigationBar">{$NAVBAR}</div>
11                <table class="table2" width="97%" summary="">
12                        <thead>
13                        <tr class="throw">
14                        <td>{'Username'|@translate}</td>
15                        <td>{'Email address'|@translate}</td>
16            <td>{'LastVisit_Date'|@translate}</td>
17            <td>{'Nb_Days'|@translate}</td>
18                        </tr>
19                        </thead>
20
21                        {foreach from=$users item=user name=users_loop}
22                                <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}">
23                        <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
24                        <td>{$user.EMAIL}</td>
25          <td style="text-align:center;">{$user.LASTVISIT}</td>
26{if $user.DISPLAY == 'green'}
27          <td style="color:lime;text-align:center;">{$user.DAYS}</td>
28{elseif $user.DISPLAY == 'orange'}
29          <td style="color:orange;text-align:center;">{$user.DAYS}</td>
30{elseif $user.DISPLAY == 'red'}
31          <td style="color:red;text-align:center;">{$user.DAYS}</td>
32{else}
33          <td style="text-align:center;">{$user.DAYS}</td>
34{/if}
35                        {foreach from=$user.plugin_columns item=data}
36                        <td>{$data}</td>
37                        {/foreach}                     
38                        </tr>
39                {/foreach}
40                </table>
41<div class="navigationBar">{$NAVBAR}</div>
42        <br>
43            </li>
44    </ul>
45  </fieldset>
46</form>
Note: See TracBrowser for help on using the repository browser.