2019-05-27 10:33:22 -07:00
|
|
|
extends layout
|
|
|
|
|
|
2020-11-23 14:09:40 -07:00
|
|
|
block content
|
2020-12-31 15:19:48 -07:00
|
|
|
include ./includes/common.pug
|
2020-12-18 18:10:58 -07:00
|
|
|
.col-md-12.cardSpacer
|
2020-12-01 19:19:50 -07:00
|
|
|
.text-center(style='margin-bottom:15px;')
|
2019-05-27 10:33:22 -07:00
|
|
|
i #{settings.locale.net_warning}
|
2020-12-12 20:21:49 -07:00
|
|
|
.container
|
2020-12-31 15:19:48 -07:00
|
|
|
if settings.network_page.show_last_updated == true
|
|
|
|
|
div.font-weight-bold(style='margin-bottom:15px;') Network data last updated:
|
|
|
|
|
span.font-weight-normal=(last_updated == null || last_updated == '0' ? ' N/A' : ' ' + format_unixtime(last_updated))
|
2020-12-12 20:21:49 -07:00
|
|
|
ul.nav.nav-tabs(role='tablist')
|
|
|
|
|
li.nav-item(role='presentation')
|
|
|
|
|
a.nav-link.active(href='#connections', aria-controls='connections', role='tab', data-toggle='tab') #{settings.locale.net_connections}
|
2020-12-01 19:19:50 -07:00
|
|
|
li.nav-item(role='presentation')
|
|
|
|
|
a.nav-link(href='#addnodes', aria-controls='addnodes', role='tab', data-toggle='tab') #{settings.locale.net_addnodes}
|
2020-12-18 18:10:58 -07:00
|
|
|
.tab-content
|
2020-12-12 20:21:49 -07:00
|
|
|
#connections.container.tab-pane.active(style='margin-top:0;border-top:0;')
|
2020-11-20 20:27:02 -07:00
|
|
|
include ./includes/net_list.pug
|
2020-12-12 20:21:49 -07:00
|
|
|
#addnodes.container.tab-pane(style='margin-top:0;border-top:0;')
|
2020-11-20 20:27:02 -07:00
|
|
|
include ./includes/net_addnodes.pug
|