16 lines
464 B
HTML
16 lines
464 B
HTML
<div class="panel" id='refresh_panel'>
|
|
[
|
|
$_('Auto refresh:')
|
|
$if getcookie('auto_refresh') == '1':
|
|
($getcookie('auto_refresh_secs')) $_('seconds')
|
|
<a href="$base/refresh/set">$_('Set')</a>
|
|
<a href="$base/refresh/off">$_('Disable')</a><!--WRONG, setting things on a GET-->
|
|
$else:
|
|
$_('Off')
|
|
<a href="$base/refresh/on">$_('Enable')</a><!--WRONG, setting things on a GET-->
|
|
]
|
|
|
|
|
|
<a href="$base/config/">$_('Admin') </a>
|
|
|
|
</div> |