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

29 lines
621 B
HTML
Raw Permalink Normal View History

2013-08-25 18:38:39 +02:00
{% extends "layout.html" %}
{% block title %}status{% endblock %}
{% block content %}
2013-08-24 17:47:25 +02:00
<h1>OpenVPN Status</h1>
2013-08-25 18:38:39 +02:00
<form method="get" action="status">
2013-08-24 21:06:19 +02:00
<input type="submit" value="refresh status">
</form>
2013-08-24 17:47:25 +02:00
<h3>Connections:</h3>
<table border="0" width="80%">
{% for connection in connections %}
<tr>
{% for field in connection %}
<td>{{ field }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
<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>
2013-08-25 18:38:39 +02:00
{% endblock %}