{% from 'include/input_macros.html' import input, select %}
{% if openvpn != '' %}
OpenVPN profiles
Profile name
|
Created
|
|
|
{% for c in openvpn_configs %}
{{c.split('/')[-1]}}
|
{{c.split('/')[0]}}
|
|
|
{% endfor %}
OpenVPN sessions
Session name
|
Status
|
|
|
{% for c in openvpn_sess %}
{{c.split(' ')[0]}}
|
{{c.split(' ')[4]}}
|
|
|
{% endfor %}
Uploading ovpn files
Ovpn file name |
Upload a file
|
{{ input('ovpn_upload_name', size='30') }}
|
Upload
|
{% else %}
You have not installed OpenVPN client.
Read here
how to install OpenVPN client.
{% endif %}