0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-live_support_console.tpl
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="StyleSheet" href="styles/{$prefs.style}" type="text/css" /> {include file='bidi.tpl'} <title>{tr}Live support:Console{/tr}</title> {literal} <script type="text/javascript" src="lib/live_support/live-support.js"> </script> {/literal} {$trl} </head> {literal} <body> {/literal} <input type="hidden" id="user" value="{$user|escape}" /> <input type="hidden" id="status" value="online" /> <table class="normal" > <tr> <th>{tr}Operator:{/tr} {$user}</th> <th>{tr}Status:{/tr} <b>{tr}{$status}{/tr}</b></th> <th style="text-align:right;"> {if $status eq 'offline'} <a href="tiki-live_support_console.php?status=online">{tr}be online{/tr}</a> {else} <a href="tiki-live_support_console.php?status=offline">{tr}be offline{/tr}</a> {/if} </th> </tr> </table> {if count($requests) > 0} <h3>{tr}Support requests{/tr}</h3> {if $new_requests eq 'y'} <script type='text/javascript'> sound(); </script> {/if} <table id='reqs' class="normal"> <tr> <th>{tr}User{/tr}</th> <th>{tr}Reason{/tr}</th> <th>{tr}Requested{/tr}</th> <th> </th> </tr> {cycle values="odd,even" print=false} {section loop=$requests name=ix} <tr class="{cycle}"> <td>{$requests[ix].user}</td> <td>{$requests[ix].reason}</td> <td>{$requests[ix].timestamp|tiki_short_time}</td> <td> {if $status eq 'online'} {assign var=thereqId value=$requests[ix].reqId} <a class="link" {jspopup href="tiki-live_support_chat_window.php?reqId=$thereqId&role=operator" width="300" height="450"}>{tr}Accept{/tr}</a> <a class="link" {jspopup href="tiki-live_support_chat_window.php?reqId=$thereqId&role=observer" width="300" height="450"}>{tr}Join{/tr}</a> {else} {/if} </td> </tr> {/section} </table> {/if} <script type='text/javascript'> var last_req={$last}; console_poll(); </script> </body> </html>