FreedomBox/freedombox/modules/networks/templates/internet_connectivity_main.html
Sunil Mohan Adapa 23b6aff290
plinth/*: Rename plinth/ folder to freedombox/
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2026-08-28 07:35:01 -04:00

44 lines
1.2 KiB
HTML

{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
<h3>
{% blocktrans trimmed %}
Your Internet Connection Type
{% endblocktrans %}
</h3>
<p>
{% blocktrans trimmed %}
The following best describes the type of Internet connection provided
by your ISP. This information is only used to suggest you necessary
configuration actions.
{% endblocktrans %}
</p>
<p>
{% if internet_connectivity_type == "static_public_ip" %}
{% blocktrans trimmed %}
My ISP provides a public IP address that does not change over time.
{% endblocktrans %}
{% elif internet_connectivity_type == "dynamic_public_ip" %}
{% blocktrans trimmed %}
My ISP provides a public IP address that may change over time.
{% endblocktrans %}
{% elif internet_connectivity_type == "private_ip" %}
{% blocktrans trimmed %}
My ISP does not provide a public IP address.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
I do not know the type of connection my ISP provides.
{% endblocktrans %}
{% endif %}
<a href="{% url 'networks:internet-connection-type' %}" class="btn btn-default"
role="button">
{% trans 'Update...' %}
</a>
</p>