{% from 'include/input_macros.html' import input, select %}
{% if openvpn != '' %}
OpenVPN profiles
Profile name
|
Time of creation
|
|
|
{% 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 ovpn file (?)
|
{{ input('ovpn_upload_name', size='30') }}
|
Upload
|
{% else %}
You do not have installed OpenVPN client.
Read hear
how to install OpenVPN client
{% endif %}