{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% load static %} {% block page_head %} {% if status.setup_running %} {% endif %} {% endblock %} {% block status %} {% if not status.is_setup and not status.setup_running %}

{% trans "Status" %}

{% blocktrans trimmed %} OpenVPN has not yet been setup. Performing a secure setup takes a very long time. Depending on how fast your {{ box_name }} is, it may even take hours. If the setup is interrupted, you may start it again. {% endblocktrans %}

{% csrf_token %}
{% endif %} {% if not status.is_setup and status.setup_running %}

{% trans "Status" %}

{% trans "OpenVPN setup is running" %}

{% blocktrans trimmed %} To perform a secure setup, this process takes a very long time. Depending on how fast your {{ box_name }} is, it may even take hours. If the setup is interrupted, you may start it again. {% endblocktrans %}

{% endif %} {% if status.is_setup %} {{ block.super }} {% endif %} {% endblock %} {% block configuration %} {% if status.is_setup %}

{% trans "Profile" %}

{% blocktrans trimmed %} To connect to {{ box_name }}'s VPN, you need to download a profile and feed it to an OpenVPN client on your mobile or desktop machine. OpenVPN Clients are available for most platforms. Click "Learn more..." above for recommended clients and instructions on how to configure them. {% endblocktrans %}

{% blocktrans trimmed %} Profile is specific to each user of {{ box_name }}. Keep it a secret. {% endblocktrans %}

{% csrf_token %}
{% endif %} {% if status.is_setup %} {{ block.super }} {% endif %} {% endblock %} {% block page_js %} {% if status.setup_running %} {% endif %} {% endblock %}