summaryrefslogtreecommitdiffstats
path: root/plugins/WebUi/templates/advanced/part_stats.html
blob: 6ce594919425ef6a19eaabfc0cadff2e57453987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$def with (stats)


<div class="panel"  id='refresh_panel'>

$_('Auto refresh:')
$if getcookie('auto_refresh') == '1':
    ($getcookie('auto_refresh_secs')) $_('seconds') &nbsp;
    $:render.part_button('GET', '/refresh/set', _('Set'), 'tango/preferences-system.png')
    $:render.part_button('POST', '/refresh/off', _('Disable'), 'tango/process-stop.png')
$else:
    $_('Off') &nbsp;
    $:render.part_button('POST', '/refresh/on', _('Enable'), 'tango/view-refresh.png')
$#end
</div>

<div class="panel"  id='stats_panel'>
    <!--<a href='/config'>-->

    $_('Connections') : $stats.num_connections ($stats.max_num_connections)

    $_('Down Speed') : $stats.download_rate  ($stats.max_download)

    $_('Up Speed') : $stats.upload_rate  ($stats.max_upload)


    <!--</a>-->

</div>

<div id='about'>
   <a href='/about'>$_('About')</a>
</div>