david/openvpnstatus
david
/
openvpnstatus
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
openvpnstatus/templates/status.html

26 lines
537 B
HTML

<!doctype html>
<title>OpenVPN Status</title>
<h1>OpenVPN Status</h1>
<h3>Connections:</h3>
<table border="0" width="80%">
{% for connection in connections %}
<tr>
{% for field in connection %}
<td>{{ field }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
<hr width="80%" align="left">
<h3>Routing Table:</h3>
<table border="0" width="80%">
{% for route in routes %}
<tr>
{% for field in route %}
<td>{{ field }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
<hr width="80%" align="left">