| 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"> |
|---|
| 5 | jQuery().ready(function(){ldelim} |
|---|
| 6 | jQuery('.cluetip').cluetip({ldelim} |
|---|
| 7 | width: 500, |
|---|
| 8 | splitTitle: '|' |
|---|
| 9 | }); |
|---|
| 10 | }); |
|---|
| 11 | </script> |
|---|
| 12 | |
|---|
| 13 | <div class="titrePage"> |
|---|
| 14 | <h2>{'Title_Tab'|@translate} {$UAM_VERSION}<br>{'SubTitle4'|@translate}</h2> |
|---|
| 15 | </div> |
|---|
| 16 | |
|---|
| 17 | <form method="post" action="{$UserAdvManager_F_ACTION}" class="general"> |
|---|
| 18 | <fieldset> |
|---|
| 19 | <legend>{'GT_Init'|@translate}</legend> |
|---|
| 20 | <ul> |
|---|
| 21 | <li> |
|---|
| 22 | <label>{'UserAdvManager_GhostTracker_Init'|@translate}</label><br><br> |
|---|
| 23 | </li> |
|---|
| 24 | </ul> |
|---|
| 25 | <p><input class="submit" type="submit" value="{'GT_Reset'|@translate}" name="GhostTracker_Init" ></p> |
|---|
| 26 | </fieldset> |
|---|
| 27 | |
|---|
| 28 | <fieldset> |
|---|
| 29 | <legend class="cluetip" title="{'UAM_gtTitle'|translate}|{'UAM_gtTitle_d'|translate}">{'GhostTracker_Title'|@translate}</legend> |
|---|
| 30 | <div class="navigationBar">{$NAVBAR}</div> |
|---|
| 31 | <table class="table2" width="97%" summary=""> |
|---|
| 32 | <thead> |
|---|
| 33 | <tr class="throw"> |
|---|
| 34 | <td> </td> |
|---|
| 35 | <td>{'Username'|@translate}</td> |
|---|
| 36 | <td>{'Email address'|@translate}</td> |
|---|
| 37 | <td>{'LastVisit_Date'|@translate}</td> |
|---|
| 38 | <td>{'Reminder'|@translate}</td> |
|---|
| 39 | </tr> |
|---|
| 40 | </thead> |
|---|
| 41 | |
|---|
| 42 | {foreach from=$users item=user name=users_loop} |
|---|
| 43 | <tr class="{if $smarty.foreach.users_loop.index is odd}row1{else}row2{/if}"> |
|---|
| 44 | <td><input type="checkbox" name="selection[]" value="{$user.ID}" {$user.CHECKED} id="selection-{$user.ID}" ></td> |
|---|
| 45 | <td><label for="selection-{$user.ID}">{$user.USERNAME}</label></td> |
|---|
| 46 | <td>{$user.EMAIL}</td> |
|---|
| 47 | {if $user.REMINDER == l10n('Reminder_Sent_NOK')} |
|---|
| 48 | <td style="color:orange;text-align:center;">{$user.LASTVISIT}</td> |
|---|
| 49 | <td style="color:orange;text-align:center;">{$user.REMINDER}</td> |
|---|
| 50 | {else $user.REMINDER == l10n('Reminder_Sent_OK')} |
|---|
| 51 | <td style="color:red;text-align:center;">{$user.LASTVISIT}</td> |
|---|
| 52 | <td style="color:red;text-align:center;">{$user.REMINDER}</td> |
|---|
| 53 | {/if} |
|---|
| 54 | {foreach from=$user.plugin_columns item=data} |
|---|
| 55 | <td>{$data}</td> |
|---|
| 56 | {/foreach} |
|---|
| 57 | </tr> |
|---|
| 58 | {/foreach} |
|---|
| 59 | </table> |
|---|
| 60 | |
|---|
| 61 | <div class="navigationBar">{$NAVBAR}</div> |
|---|
| 62 | <br> |
|---|
| 63 | |
|---|
| 64 | <p> |
|---|
| 65 | {'target'|@translate} |
|---|
| 66 | <label><input type="radio" name="target" value="all" > {'all'|@translate}</label> |
|---|
| 67 | <label><input type="radio" name="target" value="selection" checked="checked" > {'selection'|@translate}</label> |
|---|
| 68 | </p> |
|---|
| 69 | |
|---|
| 70 | <p> |
|---|
| 71 | <input class="submit" type="submit" value="{'Delete_selected'|@translate}" name="Del_Selected" > |
|---|
| 72 | <input class="submit" type="submit" value="{'Reminder'|@translate}" name="Reminder_Email" > |
|---|
| 73 | </p> |
|---|
| 74 | </fieldset> |
|---|
| 75 | </form> |
|---|