diff --git a/ui/ui/routers.tpl b/ui/ui/routers.tpl
index 3422a5b9..00a08a81 100644
--- a/ui/ui/routers.tpl
+++ b/ui/ui/routers.tpl
@@ -40,7 +40,9 @@
{Lang::T('IP Address')} |
{Lang::T('Username')} |
{Lang::T('Description')} |
- {Lang::T('Online Status')} |
+ {if $config['router_check']}
+ {Lang::T('Online Status')} |
+ {/if}
{Lang::T('Last Seen')} |
{Lang::T('Status')} |
{Lang::T('Manage')} |
@@ -65,10 +67,12 @@
onmouseleave="this.style.backgroundColor = 'black';"
onmouseenter="this.style.backgroundColor = 'white';">{$ds['username']}
{$ds['description']} |
- {if
- $ds['status'] == 'Online'}{Lang::T('Online')}{else}{Lang::T('Offline')}{/if}
- |
+ {if $config['router_check']}
+ {if
+ $ds['status'] == 'Online'}{Lang::T('Online')}{else}{Lang::T('Offline')}{/if}
+ |
+ {/if}
{$ds['last_seen']} |
{if $ds['enabled'] == 1}{Lang::T('Enabled')}{else}{Lang::T('Disabled')}{/if} |
@@ -85,9 +89,14 @@
{include file="pagination.tpl"}
+
+ {Lang::T('Check if Mikrotik Online?')}
+ {Lang::T('To check if Mikrotik is Online or not, go to Settings, set Router Check Enabled')}
+
+
{include file="sections/footer.tpl"}
|