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 %}
|
||||
<script src="../static/js/pages/bgp.js"></script>
|
||||
<section id="bgp-v4">
|
||||
<p id="ipv4Summary">Loading summary...</p>
|
||||
<h2 id="ipv4Summary">Loading summary...</h2>
|
||||
<div class="input-group mb-3">
|
||||
<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()">
|
||||
|
|
@ -16,6 +16,8 @@
|
|||
Refresh data
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="striped" id="ipv4Table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
@ -37,11 +39,11 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><a href="/bgp/json">JSON version</a></p>
|
||||
</div> <p><a href="/bgp/json">JSON version</a></p>
|
||||
</section>
|
||||
|
||||
<section id="bgp-v6">
|
||||
<p id="ipv6Summary">Loading summary...</p>
|
||||
<h2 id="ipv6Summary">Loading summary...</h2>
|
||||
<div class="input-group mb-3">
|
||||
<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()">
|
||||
|
|
@ -50,6 +52,8 @@
|
|||
Refresh data
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="striped" id="ipv6Table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
@ -71,6 +75,6 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><a href="/bgp/json">JSON version</a></p>
|
||||
</div> <p><a href="/bgp/json">JSON version</a></p>
|
||||
</section>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue