Update templates/bgp.html
This commit is contained in:
parent
ba364fdf2b
commit
170f4d283d
1 changed files with 50 additions and 46 deletions
|
|
@ -7,7 +7,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<script src="../static/js/pages/bgp.js"></script>
|
<script src="../static/js/pages/bgp.js"></script>
|
||||||
<section id="bgp-v4">
|
<section id="bgp-v4">
|
||||||
<p id="ipv4Summary">Loading summary...</p>
|
<h2 id="ipv4Summary">Loading summary...</h2>
|
||||||
<div class="input-group mb-3">
|
<div class="input-group mb-3">
|
||||||
<input type="text" id="ipv4Search" class="form-control" placeholder="Search in IPv4 table..." onkeyup="filterTable('ipv4Search', 'ipv4Table')">
|
<input type="text" id="ipv4Search" class="form-control" placeholder="Search in IPv4 table..." onkeyup="filterTable('ipv4Search', 'ipv4Table')">
|
||||||
<button id="refreshButton" class="btn btn-outline-primary" type="button" onclick="refreshBGPTable()">
|
<button id="refreshButton" class="btn btn-outline-primary" type="button" onclick="refreshBGPTable()">
|
||||||
|
|
@ -16,6 +16,8 @@
|
||||||
Refresh data
|
Refresh data
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="table-responsive">
|
||||||
<table class="striped" id="ipv4Table">
|
<table class="striped" id="ipv4Table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -37,11 +39,11 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p><a href="/bgp/json">JSON version</a></p>
|
</div> <p><a href="/bgp/json">JSON version</a></p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="bgp-v6">
|
<section id="bgp-v6">
|
||||||
<p id="ipv6Summary">Loading summary...</p>
|
<h2 id="ipv6Summary">Loading summary...</h2>
|
||||||
<div class="input-group mb-3">
|
<div class="input-group mb-3">
|
||||||
<input type="text" id="ipv6Search" class="form-control" placeholder="Search in IPv6 table..." onkeyup="filterTable('ipv6Search', 'ipv6Table')">
|
<input type="text" id="ipv6Search" class="form-control" placeholder="Search in IPv6 table..." onkeyup="filterTable('ipv6Search', 'ipv6Table')">
|
||||||
<button id="refreshButton" class="btn btn-outline-primary" type="button" onclick="refreshBGPTable()">
|
<button id="refreshButton" class="btn btn-outline-primary" type="button" onclick="refreshBGPTable()">
|
||||||
|
|
@ -50,6 +52,8 @@
|
||||||
Refresh data
|
Refresh data
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="table-responsive">
|
||||||
<table class="striped" id="ipv6Table">
|
<table class="striped" id="ipv6Table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -71,6 +75,6 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p><a href="/bgp/json">JSON version</a></p>
|
</div> <p><a href="/bgp/json">JSON version</a></p>
|
||||||
</section>
|
</section>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue