mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
44 lines
1.2 KiB
HTML
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>
|