Ignore:
Timestamp:
Feb 23, 2010, 2:50:05 AM (14 years ago)
Author:
Eric
Message:

[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)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/admin/usermanager.tpl

    r4927 r4950  
    1 <div class="titrePage">
     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">
    214  <h2>{'Title_Tab'|@translate} {$UAM_VERSION}<br>{'SubTitle3'|@translate}</h2>
    315</div>
     
    517<form method="post" action="{$UserAdvManager_F_ACTION}" class="general">
    618  <fieldset>
    7         <legend>{'UserManager_Title'|@translate}</legend>
    8     <ul>
    9                 <li><label>{'UserAdvManager_ConfirmMail_User_List'|@translate}</label><br>
    10       <br>
    11 <div class="navigationBar">{$NAVBAR}</div>
    12                 <table class="table2" width="97%" summary="">
    13                         <thead>
     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>
    1424                        <tr class="throw">
    1525                        <td>&nbsp;</td>
     
    2333                        </thead>
    2434
    25                         {foreach from=$users item=user name=users_loop}
    26                                 <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}">
    27                         <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td>
    28                         <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
    29                         <td>{$user.STATUS}</td>
    30                         <td>{$user.EMAIL}</td>
    31                         <td>{$user.GROUPS}</td>
    32                                         <td {if $user.EXPIRATION == True}style="color:red;text-align:center;"{else}style="color:lime;text-align:center;"{/if}>{$user.REGISTRATION}</td>
    33           <td style="text-align:center;">{$user.REMINDER}</td>
    34                         {foreach from=$user.plugin_columns item=data}
    35                         <td>{$data}</td>
    36                         {/foreach}                     
    37                         </tr>
    38                 {/foreach}
    39                 </table>
    40 <div class="navigationBar">{$NAVBAR}</div>
     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>
    4152        <br>
    42             </li>
    43     </ul>
    4453
    4554<p>
Note: See TracChangeset for help on using the changeset viewer.