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

Legend:

Unmodified
Added
Removed
  • 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>
Note: See TracChangeset for help on using the changeset viewer.