Ignore:
Timestamp:
Aug 20, 2010, 10:31:22 PM (14 years ago)
Author:
Eric
Message:
  • Bug 1808 fixed - The Tracking users table is ordered by default on "LastVisit" field (last in at top)
  • Bug 1809 fixed - Addition of a direct link to user's profile in all UAM tables. The link gives a new window
Location:
extensions/NBC_UserAdvManager/trunk/admin/template
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/admin/template/ghosttracker.tpl

    r6399 r6783  
    1919    {ldelim}
    2020      $("#sorting")
    21       .tablesorter({ldelim}sortList:[[3,1]], headers: {ldelim} 0: {ldelim} sorter: false {rdelim}{rdelim}{rdelim})
     21      .tablesorter({ldelim}sortList:[[4,1]], headers: {ldelim} 0: {ldelim} sorter: false {rdelim}{rdelim}{rdelim})
    2222      .tablesorterPager({ldelim}container: $("#pager"), positionFixed: false, size: 20, totalPages: 0{rdelim});
    2323    {rdelim}
     
    4747              <th>&nbsp;</th>
    4848              <th>{'Username'|@translate}</th>
     49              <th>{'Profile'|@translate}</th>
    4950              <th>{'Email address'|@translate}</th>
    5051              <th>{'LastVisit_Date'|@translate}</th>
     
    5758              <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td>
    5859              <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
     60              <td style="text-align:center;"><a href="./admin.php?page=profile&amp;user_id={$user.ID}" title="{'Profile'|@translate}" onclick="window.open(this.href); return false;"><img src="{$UAM_PATH}admin/template/icon/edit_s.png"></a></td>
    5961              <td>{$user.EMAIL}</td>
    6062{if $user.REMINDER == l10n('Reminder_Sent_NOK')}
  • extensions/NBC_UserAdvManager/trunk/admin/template/userlist.tpl

    r6399 r6783  
    2020    {ldelim}
    2121      $("#sorting")
    22       .tablesorter({ldelim}sortList:[[3,0]]{rdelim})
     22      .tablesorter({ldelim}sortList:[[3,1]]{rdelim})
    2323      .tablesorterPager({ldelim}container: $("#pager"), positionFixed: false, size: 20, totalPages: 0{rdelim});
    2424    {rdelim}
     
    3939                        <tr class="throw">
    4040                        <th>{'Username'|@translate}</th>
     41            <th>{'Profile'|@translate}</th>
    4142                        <th>{'Email address'|@translate}</th>
    4243            <th>{'LastVisit_Date'|@translate}</th>
     
    4849          <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}">
    4950            <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
     51            <td style="text-align:center;"><a href="./admin.php?page=profile&amp;user_id={$user.ID}" title="{'Profile'|@translate}" onclick="window.open(this.href); return false;"><img src="{$UAM_PATH}admin/template/icon/edit_s.png"></a></td>
    5052            <td>{$user.EMAIL}</td>
    5153            <td style="text-align:center;">{$user.LASTVISIT}</td>
  • extensions/NBC_UserAdvManager/trunk/admin/template/usermanager.tpl

    r6754 r6783  
    1919    {ldelim}
    2020      $("#sorting")
    21       .tablesorter({ldelim}sortList:[[5,1]], headers: {ldelim} 0: {ldelim} sorter: false {rdelim}{rdelim}{rdelim})
     21      .tablesorter({ldelim}sortList:[[6,1]], headers: {ldelim} 0: {ldelim} sorter: false {rdelim}{rdelim}{rdelim})
    2222      .tablesorterPager({ldelim}container: $("#pager"), positionFixed: false, size: 20, totalPages: 0{rdelim});
    2323    {rdelim}
     
    3636                        <tr class="throw">
    3737                        <th>&nbsp;</td>
    38                         <th>&nbsp;{'Username'|@translate}&nbsp;&nbsp;</th>
    39                         <th>&nbsp;{'User status'|@translate}&nbsp;&nbsp;</th>
    40                         <th>&nbsp;{'Email address'|@translate}&nbsp;&nbsp;</th>
    41                         <th>&nbsp;{'Groups'|@translate}&nbsp;&nbsp;</th>
    42                         <th>&nbsp;{'Registration_Date'|@translate}&nbsp;&nbsp;</th>
     38                        <th>{'Username'|@translate}&nbsp;&nbsp;</th>
     39            <th>{'Profile'|@translate}&nbsp;&nbsp;</th>
     40                        <th>{'User status'|@translate}&nbsp;&nbsp;</th>
     41                        <th>{'Email address'|@translate}&nbsp;&nbsp;</th>
     42                        <th>{'Groups'|@translate}&nbsp;&nbsp;</th>
     43                        <th>{'Registration_Date'|@translate}&nbsp;&nbsp;</th>
    4344          {if $CONFIRM_LOCAL == ""}
    44             <th>&nbsp;{'Reminder'|@translate}&nbsp;&nbsp;</th>
     45            <th>{'Reminder'|@translate}&nbsp;&nbsp;</th>
    4546          {/if}
    4647                        </tr>
     
    5152            <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td>
    5253            <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td>
     54            <td style="text-align:center;"><a href="./admin.php?page=profile&amp;user_id={$user.ID}" title="{'Profile'|@translate}" onclick="window.open(this.href); return false;"><img src="{$UAM_PATH}admin/template/icon/edit_s.png"></a></td>
    5355            <td>{$user.STATUS}</td>
    5456            <td>{$user.EMAIL}</td>
Note: See TracChangeset for help on using the changeset viewer.